Representation feedRep = storage.getFeed(path,feed.getUUID(),feed.getEntries());
// Now, create the feed with the XML
try {
String xml = feedRep.getText();
if (!appClient.update(xml).isSuccess()) {
errorCount++;
log.severe("Cannot update feed on target for path "+path);
throw new SyncException("Synchronization was incomplete. Cannot update feed for path "+path);
}
} catch (IOException ex) {