diff --git a/distro/changelog.xml b/distro/changelog.xml index bb1eadb..1496060 100644 --- a/distro/changelog.xml +++ b/distro/changelog.xml @@ -8,4 +8,7 @@ Fixed W3CEndpointReference->EndpointReferenceType conversion util + + Aligns with gCF 1.6.0+ and eliminates dependencies on legacy scope handling mechanisms + \ No newline at end of file diff --git a/pom.xml b/pom.xml index d19c8d8..2d2da87 100644 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ org.gcube.core common-gcore-clients - 2.0.2-SNAPSHOT + 2.1.0-SNAPSHOT GCore Clients A framework for client APIs that invoke GCore services diff --git a/src/main/java/org/gcube/common/clients/gcore/plugins/PluginAdapter.java b/src/main/java/org/gcube/common/clients/gcore/plugins/PluginAdapter.java index ad8ddca..019266a 100644 --- a/src/main/java/org/gcube/common/clients/gcore/plugins/PluginAdapter.java +++ b/src/main/java/org/gcube/common/clients/gcore/plugins/PluginAdapter.java @@ -7,8 +7,6 @@ import org.apache.axis.message.addressing.EndpointReferenceType; import org.gcube.common.clients.config.ProxyConfig; import org.gcube.common.clients.delegates.ProxyDelegate; import org.gcube.common.core.contexts.GCUBERemotePortTypeContext; -import org.gcube.common.core.scope.GCUBEScope; -import org.gcube.common.scope.api.ScopeProvider; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -73,7 +71,7 @@ public final class PluginAdapter implements Plugin { //add scope if (stub instanceof Remote) { try { - remote = GCUBERemotePortTypeContext.getProxy((Remote) stub,GCUBEScope.getScope(ScopeProvider.instance.get())); + remote = GCUBERemotePortTypeContext.getProxy((Remote) stub); } catch(Exception e) {