Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'framework/bundles/org.eclipse.ecf.remoteservice.rest/src')
-rw-r--r--framework/bundles/org.eclipse.ecf.remoteservice.rest/src/org/eclipse/ecf/remoteservice/rest/client/RestClientContainer.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/framework/bundles/org.eclipse.ecf.remoteservice.rest/src/org/eclipse/ecf/remoteservice/rest/client/RestClientContainer.java b/framework/bundles/org.eclipse.ecf.remoteservice.rest/src/org/eclipse/ecf/remoteservice/rest/client/RestClientContainer.java
index becda07fa..e28c1edf4 100644
--- a/framework/bundles/org.eclipse.ecf.remoteservice.rest/src/org/eclipse/ecf/remoteservice/rest/client/RestClientContainer.java
+++ b/framework/bundles/org.eclipse.ecf.remoteservice.rest/src/org/eclipse/ecf/remoteservice/rest/client/RestClientContainer.java
@@ -35,6 +35,7 @@ public class RestClientContainer extends AbstractClientContainer implements IRem
ID cID = getConnectedID();
if (cID != null)
this.containerId = cID;
+ this.serviceID = new RemoteServiceID(namespace, containerId, registry.getNextServiceId());
}
public RestRemoteServiceClientRegistration(Namespace namespace, String[] classNames, IRemoteCallable[][] restCalls, Dictionary properties, RemoteServiceClientRegistry registry) {
@@ -42,6 +43,7 @@ public class RestClientContainer extends AbstractClientContainer implements IRem
ID cID = getConnectedID();
if (cID != null)
this.containerId = cID;
+ this.serviceID = new RemoteServiceID(namespace, containerId, registry.getNextServiceId());
}
}

Back to the top