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