Author: jim.ma
Date: 2010-03-09 03:38:36 -0500 (Tue, 09 Mar 2010)
New Revision: 11735
Modified:
stack/native/branches/jbossws-native-3.1.2/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws2949/JBWS2949TestCase.java
Log:
[JBPAPP-3832]:corrected the endpoint class
Modified:
stack/native/branches/jbossws-native-3.1.2/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws2949/JBWS2949TestCase.java
===================================================================
---
stack/native/branches/jbossws-native-3.1.2/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws2949/JBWS2949TestCase.java 2010-03-09
08:33:24 UTC (rev 11734)
+++
stack/native/branches/jbossws-native-3.1.2/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws2949/JBWS2949TestCase.java 2010-03-09
08:38:36 UTC (rev 11735)
@@ -35,7 +35,6 @@
import junit.framework.Test;
-import org.jboss.test.ws.jaxws.jbws2927.WSAEndpoint;
import org.jboss.ws.core.soap.NodeImpl;
import org.jboss.wsf.test.JBossWSTest;
@@ -49,7 +48,7 @@
public final String TARGET_ENDPOINT_ADDRESS = "http://" + getServerHost() +
":8080/jaxws-jbws2949";
- private static WSAEndpoint port;
+ private static Endpoint port;
public static Test suite() throws Exception
{
@@ -63,7 +62,7 @@
QName serviceName = new
QName("http://ws.jboss.org/jbws2949",
"EndpointService");
Service service = Service.create(wsdlURL, serviceName);
- port = service.getPort(WSAEndpoint.class);
+ port = service.getPort(Endpoint.class);
}
public void testCall() throws Exception