// New Store
// ***************************
Service service = new Service();
service.setServiceName("Service 1");
service.setTag("abc");
service.saveOrUpdateRealServiceUrl(new Url("http://www.abc.com"));
store.saveOrUpdateService(service);
// ***************************
// Get the store as XML
// ***************************
String storeAsXml = getStoreAsXml();
// ***************************
// Rebuild the store with:
// - Same Service
// - Different URL
// ***************************
store.deleteEverything();
service = new Service();
service.setServiceName("Service 1");
service.setTag("def");
service.saveOrUpdateRealServiceUrl(new Url("http://www.def.com"));
store.saveOrUpdateService(service);
// ***************************
// Upload/Merge the store again.