RestClient client = new RestClient();
Resource resource =
client.resource(MessageFormat.format(SERVICE_URL, String.valueOf(server
.getServerPort())));
AtomFeedProvider afp = new AtomFeedProvider();
AtomFeed entryToPost =
afp.readFrom(AtomFeed.class,
null,
null,
MediaType.APPLICATION_ATOM_XML_TYPE,
null,
new ByteArrayInputStream(FEED.getBytes()));
AtomFeed responseEntity =
resource.accept(MediaType.APPLICATION_ATOM_XML_TYPE)
.contentType(MediaType.APPLICATION_ATOM_XML_TYPE).post(AtomFeed.class,
entryToPost);
ByteArrayOutputStream os = new ByteArrayOutputStream();
afp.writeTo(responseEntity,
AtomFeed.class,
null,
null,
MediaType.APPLICATION_ATOM_XML_TYPE,
null,