[jbossws-commits] JBossWS SVN: r8604 - in framework/trunk/testsuite/test: resources/jaxws/jbws1841/META-INF/wsdl and 1 other directories.

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Thu Oct 30 15:49:20 EDT 2008


Author: alessio.soldano at jboss.com
Date: 2008-10-30 15:49:20 -0400 (Thu, 30 Oct 2008)
New Revision: 8604

Modified:
   framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/jbws1841/EndpointInterface.java
   framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/jbws1841/EndpointService.java
   framework/trunk/testsuite/test/resources/jaxws/jbws1841/META-INF/wsdl/TestService.wsdl
   framework/trunk/testsuite/test/resources/jaxws/jbws1841/META-INF_4/wsdl/TestService.wsdl
Log:
Minor changes to port name in JBWS-1841 test case to run with Metro with changes due to JBWS-2374 - wip


Modified: framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/jbws1841/EndpointInterface.java
===================================================================
--- framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/jbws1841/EndpointInterface.java	2008-10-30 19:41:10 UTC (rev 8603)
+++ framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/jbws1841/EndpointInterface.java	2008-10-30 19:49:20 UTC (rev 8604)
@@ -32,7 +32,7 @@
  * @since 29-Apr-2005
  */
 @WebService(
-  targetNamespace = "http://www.openuri.org/2004/04/HelloWorld"  
+  targetNamespace = "http://www.openuri.org/2004/04/HelloWorld"
 )
 @SOAPBinding(style = SOAPBinding.Style.RPC)
 @Remote

Modified: framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/jbws1841/EndpointService.java
===================================================================
--- framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/jbws1841/EndpointService.java	2008-10-30 19:41:10 UTC (rev 8603)
+++ framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/jbws1841/EndpointService.java	2008-10-30 19:49:20 UTC (rev 8604)
@@ -30,13 +30,13 @@
 @WebServiceClient(name="EndpointService", targetNamespace="http://www.openuri.org/2004/04/HelloWorld")
 public class EndpointService extends javax.xml.ws.Service
 {
-   private final static QName TESTENDPOINTPORT = new QName("http://www.openuri.org/2004/04/HelloWorld", "EndpointInterfacePort");
+   private final static QName TESTENDPOINTPORT = new QName("http://www.openuri.org/2004/04/HelloWorld", "EJB3BeanPort");
    
    public EndpointService(URL wsdlLocation, QName serviceName) {
       super(wsdlLocation, serviceName);
    }
    
-   @WebEndpoint(name = "EndpointInterfacePort")
+   @WebEndpoint(name = "EJB3BeanPort")
    public EndpointInterface getEndpointPort() {
       return (EndpointInterface)super.getPort(TESTENDPOINTPORT, EndpointInterface.class);
    }

Modified: framework/trunk/testsuite/test/resources/jaxws/jbws1841/META-INF/wsdl/TestService.wsdl
===================================================================
--- framework/trunk/testsuite/test/resources/jaxws/jbws1841/META-INF/wsdl/TestService.wsdl	2008-10-30 19:41:10 UTC (rev 8603)
+++ framework/trunk/testsuite/test/resources/jaxws/jbws1841/META-INF/wsdl/TestService.wsdl	2008-10-30 19:49:20 UTC (rev 8604)
@@ -32,7 +32,7 @@
    </binding>
    <service name='EndpointService'>
 
-      <port binding='tns:EndpointInterfaceBinding' name='EndpointInterfacePort'>
+      <port binding='tns:EndpointInterfaceBinding' name='EJB3BeanPort'>
          <soap:address location='http://@jboss.bind.address@:8080/jaxws-jbws1841/EJB3Bean'/>
       </port>
    </service>

Modified: framework/trunk/testsuite/test/resources/jaxws/jbws1841/META-INF_4/wsdl/TestService.wsdl
===================================================================
--- framework/trunk/testsuite/test/resources/jaxws/jbws1841/META-INF_4/wsdl/TestService.wsdl	2008-10-30 19:41:10 UTC (rev 8603)
+++ framework/trunk/testsuite/test/resources/jaxws/jbws1841/META-INF_4/wsdl/TestService.wsdl	2008-10-30 19:49:20 UTC (rev 8604)
@@ -32,7 +32,7 @@
    </binding>
    <service name='EndpointService'>
 
-      <port binding='tns:EndpointInterfaceBinding' name='EndpointInterfacePort'>
+      <port binding='tns:EndpointInterfaceBinding' name='EJB3BeanPort'>
          <soap:address location='http://@jboss.bind.address@:8080/jaxws-jbws1841/EJB3Bean'/>
       </port>
    </service>




More information about the jbossws-commits mailing list