Author: alessio.soldano(a)jboss.com
Date: 2011-03-29 13:29:43 -0400 (Tue, 29 Mar 2011)
New Revision: 13957
Modified:
stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/bus/ServletClient.java
Log:
Commenting out usage of @WebServiceRef which is not working yet on AS7 and restoring
erroneously commented subtests
Modified:
stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/bus/ServletClient.java
===================================================================
---
stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/bus/ServletClient.java 2011-03-29
16:58:17 UTC (rev 13956)
+++
stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/bus/ServletClient.java 2011-03-29
17:29:43 UTC (rev 13957)
@@ -42,8 +42,8 @@
{
private static final long serialVersionUID = 1L;
- @WebServiceRef(value = EndpointService.class, type = Endpoint.class, wsdlLocation =
"WEB-INF/wsdl/Endpoint.wsdl")
- public Endpoint port;
+// @WebServiceRef(value = EndpointService.class, type = Endpoint.class, wsdlLocation =
"WEB-INF/wsdl/Endpoint.wsdl")
+// public Endpoint port;
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse res) throws
ServletException, IOException
@@ -82,24 +82,25 @@
throw new IOException(e);
}
}
-
+
public void testBusCreation() throws BusTestException
{
-// AbstractClient.testBusCreation();
+ AbstractClient.testBusCreation();
}
-
+
public void testSOAPConnection(String host) throws BusTestException, Exception
{
AbstractClient.testSOAPConnection(host);
}
-
+
public void testWebServiceRef() throws BusTestException
{
+ System.out.println("FIXME: @WebServiceRef not working yet on AS7");
// AbstractClient.testWebServiceRef(port);
}
-
+
public void testWebServiceClient(String host) throws BusTestException, Exception
{
-// AbstractClient.testWebServiceClient(host);
+ AbstractClient.testWebServiceClient(host);
}
}
Show replies by date