AtomFeedEntryUtil
.readFeedEntry("atom_1.0", new InputStreamReader(postMethod.getResponseBodyAsStream()));
msg.setBody(createdEntry);
} else if (status == 404) {
msg.setFaultBody(new NotFoundException());
} else {
msg.setFaultBody(new ServiceRuntimeException("HTTP status code: " + status));
}
} catch (Exception e) {