[jbossws-commits] JBossWS SVN: r15152 - in stack/native/trunk/modules/testsuite: native-tests/src/test/java/org/jboss/test/ws/jaxrpc/samples/docstyle/bare and 8 other directories.

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Wed Oct 19 12:50:30 EDT 2011


Author: alessio.soldano at jboss.com
Date: 2011-10-19 12:50:29 -0400 (Wed, 19 Oct 2011)
New Revision: 15152

Modified:
   stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/samples/docstyle/bare/TrivialServiceDocBareTestCase.java
   stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/samples/docstyle/wrapped/TrivialServiceDocWrappedTestCase.java
   stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/samples/exception/ExceptionTestCase.java
   stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/samples/handler/HeaderClientTestCase.java
   stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/samples/holder/HolderTestCase.java
   stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/samples/message/MessageTestCase.java
   stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/samples/mtom/MTOMTestCase.java
   stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/samples/oneway/OneWayTestCase.java
   stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/samples/rpcstyle/TrivialServiceRpcTestCase.java
   stack/native/trunk/modules/testsuite/pom.xml
Log:
Enabling further jaxrpc tests


Modified: stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/samples/docstyle/bare/TrivialServiceDocBareTestCase.java
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/samples/docstyle/bare/TrivialServiceDocBareTestCase.java	2011-10-19 11:40:20 UTC (rev 15151)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/samples/docstyle/bare/TrivialServiceDocBareTestCase.java	2011-10-19 16:50:29 UTC (rev 15152)
@@ -21,8 +21,12 @@
  */
 package org.jboss.test.ws.jaxrpc.samples.docstyle.bare;
 
+import java.net.URL;
+
 import javax.naming.InitialContext;
+import javax.xml.namespace.QName;
 import javax.xml.rpc.Service;
+import javax.xml.rpc.ServiceFactory;
 
 import junit.framework.Test;
 
@@ -37,6 +41,8 @@
  */
 public class TrivialServiceDocBareTestCase extends JBossWSTest
 {
+   private static final String TARGET_NAMESPACE = "http://org.jboss.ws/samples/docstyle/bare";
+   private static final String TARGET_ENDPOINT_URL = "http://" + getServerHost() + ":8080/jaxrpc-samples-docstyle-bare";
    private static TrivialService port;
 
    public static Test suite()
@@ -50,11 +56,15 @@
 
       if (port == null)
       {
-         InitialContext iniCtx = getInitialContext();
-         Service service = (Service)iniCtx.lookup("java:comp/env/service/TrivialService");
-         port = (TrivialService)service.getPort(TrivialService.class);
+         port = getService(TrivialService.class, "SampleService", "TrivialServicePort");
       }
    }
+   
+   protected <T> T getService(final Class<T> clazz, final String serviceName, final String portName) throws Exception {
+      ServiceFactory serviceFactory = ServiceFactory.newInstance();
+      Service service = serviceFactory.createService(new URL(TARGET_ENDPOINT_URL + "?wsdl"), new QName(TARGET_NAMESPACE, serviceName));
+      return (T) service.getPort(new QName(TARGET_NAMESPACE, portName), clazz);
+   }
 
    public void testProducPurchase() throws Exception
    {

Modified: stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/samples/docstyle/wrapped/TrivialServiceDocWrappedTestCase.java
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/samples/docstyle/wrapped/TrivialServiceDocWrappedTestCase.java	2011-10-19 11:40:20 UTC (rev 15151)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/samples/docstyle/wrapped/TrivialServiceDocWrappedTestCase.java	2011-10-19 16:50:29 UTC (rev 15152)
@@ -21,8 +21,12 @@
  */
 package org.jboss.test.ws.jaxrpc.samples.docstyle.wrapped;
 
+import java.net.URL;
+
 import javax.naming.InitialContext;
+import javax.xml.namespace.QName;
 import javax.xml.rpc.Service;
+import javax.xml.rpc.ServiceFactory;
 
 import junit.framework.Test;
 
@@ -37,6 +41,8 @@
  */
 public class TrivialServiceDocWrappedTestCase extends JBossWSTest
 {
+   private static final String TARGET_NAMESPACE = "http://org.jboss.ws/samples/docstyle/wrapped";
+   private static final String TARGET_ENDPOINT_URL = "http://" + getServerHost() + ":8080/jaxrpc-samples-docstyle-wrapped";
    private static TrivialService port;
 
    public static Test suite()
@@ -50,11 +56,15 @@
 
       if (port == null)
       {
-         InitialContext iniCtx = getInitialContext();
-         Service service = (Service)iniCtx.lookup("java:comp/env/service/TrivialService");
-         port = (TrivialService)service.getPort(TrivialService.class);
+         port = getService(TrivialService.class, "SampleService", "TrivialServicePort");
       }
    }
+   
+   protected <T> T getService(final Class<T> clazz, final String serviceName, final String portName) throws Exception {
+      ServiceFactory serviceFactory = ServiceFactory.newInstance();
+      Service service = serviceFactory.createService(new URL(TARGET_ENDPOINT_URL + "?wsdl"), new QName(TARGET_NAMESPACE, serviceName));
+      return (T) service.getPort(new QName(TARGET_NAMESPACE, portName), clazz);
+   }
 
    public void testProducTrivial() throws Exception
    {

Modified: stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/samples/exception/ExceptionTestCase.java
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/samples/exception/ExceptionTestCase.java	2011-10-19 11:40:20 UTC (rev 15151)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/samples/exception/ExceptionTestCase.java	2011-10-19 16:50:29 UTC (rev 15152)
@@ -22,6 +22,7 @@
 package org.jboss.test.ws.jaxrpc.samples.exception;
 
 import java.io.ByteArrayInputStream;
+import java.net.URL;
 import java.rmi.RemoteException;
 
 import javax.naming.InitialContext;
@@ -55,6 +56,7 @@
 public class ExceptionTestCase extends JBossWSTest
 {
    private static final String TARGET_NAMESPACE = "http://org.jboss.ws/samples/exception";
+   private static final String TARGET_ENDPOINT_URL = "http://" + getServerHost() + ":8080/jaxrpc-samples-exception";
 
    public static Test suite() throws Exception
    {
@@ -63,10 +65,9 @@
 
    private ExceptionServiceInterface getPort() throws Exception
    {
-      InitialContext iniCtx = getInitialContext();
-      ExceptionService service = (ExceptionService)iniCtx.lookup("java:comp/env/service/ExceptionService");
-      ExceptionServiceInterface port = service.getPort();
-      return port;
+      ServiceFactory serviceFactory = ServiceFactory.newInstance();
+      Service service = serviceFactory.createService(new URL(TARGET_ENDPOINT_URL + "?wsdl"), new QName(TARGET_NAMESPACE, "ExceptionService"));
+      return (ExceptionServiceInterface)service.getPort(new QName(TARGET_NAMESPACE, "ExceptionServiceInterfacePort"), ExceptionServiceInterface.class);
    }
 
    /** Test creation of a SOAPFault */

Modified: stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/samples/handler/HeaderClientTestCase.java
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/samples/handler/HeaderClientTestCase.java	2011-10-19 11:40:20 UTC (rev 15151)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/samples/handler/HeaderClientTestCase.java	2011-10-19 16:50:29 UTC (rev 15152)
@@ -21,14 +21,18 @@
  */
 package org.jboss.test.ws.jaxrpc.samples.handler;
 
+import java.net.URL;
+
 import javax.naming.InitialContext;
 import javax.xml.namespace.QName;
 import javax.xml.rpc.ParameterMode;
 import javax.xml.rpc.Service;
+import javax.xml.rpc.ServiceFactory;
 import javax.xml.rpc.holders.StringHolder;
 
 import junit.framework.Test;
 
+import org.jboss.test.ws.jaxrpc.samples.handler.HeaderTestService;
 import org.jboss.ws.common.Constants;
 import org.jboss.ws.core.StubExt;
 import org.jboss.wsf.test.JBossWSTest;
@@ -43,6 +47,7 @@
 public class HeaderClientTestCase extends JBossWSTest
 {
    public final String TARGET_ENDPOINT_ADDRESS = "http://" + getServerHost() + ":8080/jaxrpc-samples-handler";
+   private static final String TARGET_NAMESPACE = "http://org.jboss.ws/samples/handler";
 
    private static HeaderTestService port;
 
@@ -57,11 +62,15 @@
 
       if (port == null)
       {
-         InitialContext iniCtx = getInitialContext();
-         Service service = (Service)iniCtx.lookup("java:comp/env/service/TestService");
-         port = (HeaderTestService)service.getPort(HeaderTestService.class);
+         port = getService(HeaderTestService.class, "TestService", "HeaderTestServicePort");
       }
    }
+   
+   protected <T> T getService(final Class<T> clazz, final String serviceName, final String portName) throws Exception {
+      ServiceFactory serviceFactory = ServiceFactory.newInstance();
+      Service service = serviceFactory.createService(new URL(TARGET_ENDPOINT_ADDRESS + "?wsdl"), new QName(TARGET_NAMESPACE, serviceName));
+      return (T) service.getPort(new QName(TARGET_NAMESPACE, portName), clazz);
+   }
 
    public void testBoundInHeader() throws Exception
    {

Modified: stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/samples/holder/HolderTestCase.java
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/samples/holder/HolderTestCase.java	2011-10-19 11:40:20 UTC (rev 15151)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/samples/holder/HolderTestCase.java	2011-10-19 16:50:29 UTC (rev 15152)
@@ -23,11 +23,13 @@
 
 import java.math.BigDecimal;
 import java.math.BigInteger;
+import java.net.URL;
 import java.util.GregorianCalendar;
 
 import javax.naming.InitialContext;
 import javax.xml.namespace.QName;
 import javax.xml.rpc.Service;
+import javax.xml.rpc.ServiceFactory;
 import javax.xml.rpc.holders.BigDecimalHolder;
 import javax.xml.rpc.holders.BigIntegerHolder;
 import javax.xml.rpc.holders.BooleanHolder;
@@ -62,6 +64,9 @@
  */
 public class HolderTestCase extends JBossWSTest
 {
+   private static final String TARGET_ENDPOINT_URL = "http://" + getServerHost() + ":8080/jaxrpc-samples-holder";
+   private static final String TARGET_NAMESPACE = "http://org.jboss.ws/samples/holder";
+   
    private static HolderTestService port;
 
    public static Test suite()
@@ -75,11 +80,15 @@
 
       if (port == null)
       {
-         InitialContext iniCtx = getInitialContext();
-         Service service = (Service)iniCtx.lookup("java:comp/env/service/TestService");
-         port = (HolderTestService)service.getPort(HolderTestService.class);
+         port = getService(HolderTestService.class, "TestService", "HolderTestServicePort");
       }
    }
+   
+   protected <T> T getService(final Class<T> clazz, final String serviceName, final String portName) throws Exception {
+      ServiceFactory serviceFactory = ServiceFactory.newInstance();
+      Service service = serviceFactory.createService(new URL(TARGET_ENDPOINT_URL + "?wsdl"), new QName(TARGET_NAMESPACE, serviceName));
+      return (T) service.getPort(new QName(TARGET_NAMESPACE, portName), clazz);
+   }
 
    public void testEchoBigDecimal() throws Exception
    {

Modified: stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/samples/message/MessageTestCase.java
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/samples/message/MessageTestCase.java	2011-10-19 11:40:20 UTC (rev 15151)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/samples/message/MessageTestCase.java	2011-10-19 16:50:29 UTC (rev 15152)
@@ -30,6 +30,7 @@
 import javax.xml.parsers.DocumentBuilderFactory;
 import javax.xml.parsers.ParserConfigurationException;
 import javax.xml.rpc.Service;
+import javax.xml.rpc.ServiceFactory;
 import javax.xml.soap.MessageFactory;
 import javax.xml.soap.SOAPBody;
 import javax.xml.soap.SOAPConnection;
@@ -48,7 +49,7 @@
 
 import org.jboss.wsf.test.JBossWSTest;
 import org.jboss.wsf.test.JBossWSTestSetup;
-import org.jboss.ws.common.DOMUtils;
+import org.jboss.ws.api.util.DOMUtils;
 import org.w3c.dom.Document;
 import org.w3c.dom.Element;
 
@@ -61,6 +62,7 @@
 public class MessageTestCase extends JBossWSTest
 {
    private final String TARGET_ENDPOINT = "http://" + getServerHost() + ":8080/jaxrpc-samples-message";
+   private static final String TARGET_NAMESPACE = "http://org.jboss.ws/samples/message";
 
    /** Deploy the test ear */
    public static Test suite() throws Exception
@@ -129,12 +131,11 @@
 
    private MessageTestService getPort() throws Exception
    {
-      InitialContext iniCtx = getInitialContext();
-      Service service = (Service)iniCtx.lookup("java:comp/env/service/MessageService");
-      MessageTestService port = (MessageTestService)service.getPort(MessageTestService.class);
-      return port;
+      ServiceFactory serviceFactory = ServiceFactory.newInstance();
+      Service service = serviceFactory.createService(new URL(TARGET_ENDPOINT + "?wsdl"), new QName(TARGET_NAMESPACE, "MessageService"));
+      return (MessageTestService)service.getPort(new QName(TARGET_NAMESPACE, "MessageTestServicePort"), MessageTestService.class);
    }
-
+   
    private SOAPElement convertToSOAPElement(Element reqElement) throws TransformerException, SOAPException
    {
       SOAPElement parent = SOAPFactory.newInstance().createElement("dummy");

Modified: stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/samples/mtom/MTOMTestCase.java
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/samples/mtom/MTOMTestCase.java	2011-10-19 11:40:20 UTC (rev 15151)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/samples/mtom/MTOMTestCase.java	2011-10-19 16:50:29 UTC (rev 15152)
@@ -24,16 +24,18 @@
 import java.io.BufferedReader;
 import java.io.ByteArrayInputStream;
 import java.io.InputStreamReader;
+import java.net.URL;
 
 import javax.activation.DataHandler;
 import javax.naming.InitialContext;
+import javax.xml.namespace.QName;
 import javax.xml.rpc.Service;
+import javax.xml.rpc.ServiceFactory;
 import javax.xml.rpc.Stub;
 import javax.xml.transform.stream.StreamSource;
 
 import junit.framework.Test;
 
-import org.jboss.ws.core.StubExt;
 import org.jboss.wsf.test.JBossWSTest;
 import org.jboss.wsf.test.JBossWSTestSetup;
 
@@ -46,6 +48,9 @@
  */
 public class MTOMTestCase extends JBossWSTest
 {
+   private static final String TARGET_NAMESPACE = "http://org.jboss.ws/samples/mtom";
+   private static final String TARGET_ENDPOINT_URL = "http://" + getServerHost() + ":8080/jaxrpc-samples-mtom";
+   
    private static EmployeeRecords port;
 
    /** Deploy the test ear */
@@ -60,11 +65,15 @@
 
       if (port == null)
       {
-         InitialContext iniCtx = getInitialContext();
-         Service service = (Service)iniCtx.lookup("java:comp/env/service/XOPTestService");
-         port = (EmployeeRecords)service.getPort(EmployeeRecords.class);
+         port = getService(EmployeeRecords.class, "EmployeeService", "EmployeeRecordsPort");
       }
    }
+   
+   protected <T> T getService(final Class<T> clazz, final String serviceName, final String portName) throws Exception {
+      ServiceFactory serviceFactory = ServiceFactory.newInstance();
+      Service service = serviceFactory.createService(new URL(TARGET_ENDPOINT_URL + "?wsdl"), new QName(TARGET_NAMESPACE, serviceName));
+      return (T) service.getPort(new QName(TARGET_NAMESPACE, portName), clazz);
+   }
 
    public void testUpdate() throws Exception
    {
@@ -92,7 +101,7 @@
 
       StreamSource xmlStream = (StreamSource)employee.getLegacyData().getContent();
       String content = new BufferedReader(new InputStreamReader(xmlStream.getInputStream())).readLine();
-      assertEquals("<Payroll><Data/></Payroll>", content);
+      assertTrue(content.contains("<Payroll><Data/></Payroll>"));
    }
 
    private DataHandler getLegacyData()
@@ -102,6 +111,6 @@
 
    private void setMTOMEnabled(Boolean b)
    {
-      ((Stub)port)._setProperty(StubExt.PROPERTY_MTOM_ENABLED, b);
+      ((Stub)port)._setProperty("org.jboss.ws.mtom.enabled", b);
    }
 }

Modified: stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/samples/oneway/OneWayTestCase.java
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/samples/oneway/OneWayTestCase.java	2011-10-19 11:40:20 UTC (rev 15151)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/samples/oneway/OneWayTestCase.java	2011-10-19 16:50:29 UTC (rev 15152)
@@ -21,8 +21,12 @@
  */
 package org.jboss.test.ws.jaxrpc.samples.oneway;
 
+import java.net.URL;
+
 import javax.naming.InitialContext;
+import javax.xml.namespace.QName;
 import javax.xml.rpc.Service;
+import javax.xml.rpc.ServiceFactory;
 
 import junit.framework.Test;
 
@@ -37,6 +41,9 @@
  */
 public class OneWayTestCase extends JBossWSTest
 {
+   private static final String TARGET_ENDPOINT_URL = "http://" + getServerHost() + ":8080/jaxrpc-samples-oneway";
+   private static final String TARGET_NAMESPACE = "http://org.jboss.ws/samples/oneway";
+   
    private static OneWayTestService port;
 
    public static Test suite()
@@ -50,11 +57,15 @@
 
       if (port == null)
       {
-         InitialContext iniCtx = getInitialContext();
-         Service service = (Service)iniCtx.lookup("java:comp/env/service/TestService");
-         port = (OneWayTestService)service.getPort(OneWayTestService.class);
+         port = getService(OneWayTestService.class, "TestService", "OneWayTestServicePort");
       }
    }
+   
+   protected <T> T getService(final Class<T> clazz, final String serviceName, final String portName) throws Exception {
+      ServiceFactory serviceFactory = ServiceFactory.newInstance();
+      Service service = serviceFactory.createService(new URL(TARGET_ENDPOINT_URL + "?wsdl"), new QName(TARGET_NAMESPACE, serviceName));
+      return (T) service.getPort(new QName(TARGET_NAMESPACE, portName), clazz);
+   }
 
    public void testOneWay() throws Exception
    {

Modified: stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/samples/rpcstyle/TrivialServiceRpcTestCase.java
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/samples/rpcstyle/TrivialServiceRpcTestCase.java	2011-10-19 11:40:20 UTC (rev 15151)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxrpc/samples/rpcstyle/TrivialServiceRpcTestCase.java	2011-10-19 16:50:29 UTC (rev 15152)
@@ -21,8 +21,12 @@
  */
 package org.jboss.test.ws.jaxrpc.samples.rpcstyle;
 
+import java.net.URL;
+
 import javax.naming.InitialContext;
+import javax.xml.namespace.QName;
 import javax.xml.rpc.Service;
+import javax.xml.rpc.ServiceFactory;
 
 import junit.framework.Test;
 
@@ -37,6 +41,9 @@
  */
 public class TrivialServiceRpcTestCase extends JBossWSTest
 {
+   private static final String TARGET_ENDPOINT_URL = "http://" + getServerHost() + ":8080/jaxrpc-samples-rpcstyle";
+   private static final String TARGET_NAMESPACE = "http://org.jboss.ws/samples/rpcstyle";
+   
    private static TrivialService port;
 
    public static Test suite()
@@ -50,11 +57,15 @@
 
       if (port == null)
       {
-         InitialContext iniCtx = getInitialContext();
-         Service service = (Service)iniCtx.lookup("java:comp/env/service/TrivialService");
-         port = (TrivialService)service.getPort(TrivialService.class);
+         port = getService(TrivialService.class, "SampleService", "TrivialServicePort");
       }
    }
+   
+   protected <T> T getService(final Class<T> clazz, final String serviceName, final String portName) throws Exception {
+      ServiceFactory serviceFactory = ServiceFactory.newInstance();
+      Service service = serviceFactory.createService(new URL(TARGET_ENDPOINT_URL + "?wsdl"), new QName(TARGET_NAMESPACE, serviceName));
+      return (T) service.getPort(new QName(TARGET_NAMESPACE, portName), clazz);
+   }
 
    public void testTrivialAccess() throws Exception
    {

Modified: stack/native/trunk/modules/testsuite/pom.xml
===================================================================
--- stack/native/trunk/modules/testsuite/pom.xml	2011-10-19 11:40:20 UTC (rev 15151)
+++ stack/native/trunk/modules/testsuite/pom.xml	2011-10-19 16:50:29 UTC (rev 15152)
@@ -1044,7 +1044,7 @@
                  <exclude>org/jboss/test/ws/jaxws/wsaddressing/replyto/**</exclude>
                  <exclude>org/jboss/test/ws/jaxws/jbws1581/**</exclude>
 
-                 <!-- # appclient & jaxrpc client issues -->
+                 <!-- # Remote JNDI lookup & jaxrpc client issues -->
                  <exclude>org/jboss/test/ws/benchmark/jaxrpc/BenchmarkDocEJBTestCase*</exclude>
                  <exclude>org/jboss/test/ws/benchmark/jaxrpc/BenchmarkDocJSETestCase*</exclude>
                  <exclude>org/jboss/test/ws/benchmark/jaxrpc/BenchmarkRpcEJBTestCase*</exclude>
@@ -1067,7 +1067,6 @@
                  <exclude>org/jboss/test/ws/jaxrpc/jbws1190/JBWS1190TestCase*</exclude>
                  <exclude>org/jboss/test/ws/jaxrpc/jbws1205/JBWS1205TestCase*</exclude>
                  <exclude>org/jboss/test/ws/jaxrpc/jbws124/JBWS124TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws128/JBWS128TestCase*</exclude>
                  <exclude>org/jboss/test/ws/jaxrpc/jbws1303/JBWS1303TestCase*</exclude>
                  <exclude>org/jboss/test/ws/jaxrpc/jbws1316/JBWS1316CallTestCase*</exclude>
                  <exclude>org/jboss/test/ws/jaxrpc/jbws1427/JBWS1427TestCase*</exclude>
@@ -1126,26 +1125,17 @@
                  <exclude>org/jboss/test/ws/jaxrpc/marshall/MarshallDocLitTestCase*</exclude>
                  <exclude>org/jboss/test/ws/jaxrpc/marshall/MarshallRpcLitTestCase*</exclude>
                  <exclude>org/jboss/test/ws/jaxrpc/overloaded/OverloadedTestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/samples/docstyle/bare/TrivialServiceDocBareTestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/samples/docstyle/wrapped/TrivialServiceDocWrappedTestCase*</exclude>
                  <exclude>org/jboss/test/ws/jaxrpc/samples/dynamichandler/DynamicHandlerTestCase*</exclude>
                  <exclude>org/jboss/test/ws/jaxrpc/samples/dynamichandler/StaticHandlerTestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/samples/exception/ExceptionTestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/samples/handler/HeaderClientTestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/samples/message/MessageTestCase*</exclude>
                  <exclude>org/jboss/test/ws/jaxrpc/samples/mtom/MTOMTestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/samples/oneway/OneWayTestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/samples/rpcstyle/TrivialServiceRpcTestCase*</exclude>
                  <exclude>org/jboss/test/ws/jaxrpc/samples/secureejb/SecureEJBTestCase*</exclude>
                  <exclude>org/jboss/test/ws/jaxrpc/samples/serviceref/ServiceRefClientTestCase*</exclude>
                  <exclude>org/jboss/test/ws/jaxrpc/samples/serviceref/ServiceRefEJBTestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/samples/serviceref/ServiceRefServletTestCase*</exclude>
                  <exclude>org/jboss/test/ws/jaxrpc/samples/wsaddr/replyto/AddressingReplyToTestCase*</exclude>
                  <exclude>org/jboss/test/ws/jaxrpc/samples/wssecurity/SimpleEncryptTestCase*</exclude>
                  <exclude>org/jboss/test/ws/jaxrpc/samples/wssecurity/SimpleSignTestCase*</exclude>
                  <exclude>org/jboss/test/ws/jaxrpc/utf16/UTF16TestCase*</exclude>
                  <exclude>org/jboss/test/ws/jaxrpc/wsdlpublish/WsdlPublishTestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/wsse/RoundTripTestCase*</exclude>
                  <exclude>org/jboss/test/ws/jaxrpc/wsse/UsernameTestCase*</exclude>
                  <exclude>org/jboss/test/ws/jaxrpc/xop/doclit/XOPHandlerTestCase*</exclude>
                  <exclude>org/jboss/test/ws/jaxrpc/xop/doclit/XOPTestCase*</exclude>



More information about the jbossws-commits mailing list