ServerImpl svr = (ServerImpl)sf.create();
// TEST POST/GETs
Person p = new Person();
p.setName("Dan");
DataHandler handler = new DataHandler(new ByteArrayDataSource("foo".getBytes(),
"application/octet-stream"));
p.setPhoto(handler);
impl.addPerson(p);
byte[] res = doMethodBytes("http://localhost:9001/people", null, "GET", null);
assertNotNull(res);