This commit is contained in:
Lucio Lelii 2016-09-06 08:16:54 +00:00
parent 9a7917a1e2
commit bdb4d0e8b2
2 changed files with 4 additions and 2 deletions

View File

@ -8,7 +8,7 @@
</parent>
<groupId>org.gcube.core</groupId>
<artifactId>common-gcore-stubs</artifactId>
<version>1.2.1-SNAPSHOT</version>
<version>1.2.2-SNAPSHOT</version>
<name>GCore Stubs</name>
<description>JAXWS Stub Support for gCore Service</description>
@ -39,7 +39,7 @@
<dependency>
<groupId>org.gcube.common</groupId>
<artifactId>common-authorization</artifactId>
<version>[1.0.0-SNAPSHOT,2.0.0-SNAPSHOT)</version>
<version>[2.0.0-SNAPSHOT,3.0.0-SNAPSHOT)</version>
</dependency>
<!-- test dependencies -->

View File

@ -105,6 +105,8 @@ public class StubFactory<T> implements StubFactoryDSL.AtClause<T> {
// get JAXWS service from endpoint address
Service service = buildService(endpointAddress+"?wsdl", target.type(),target.qName());
log.info("target type is {} ", target.type());
// get JAXWS stub
T stub = service.getPort(reference,target.type(),features);