assertNull(ClientHandler.message);
}
public void testStandardConfigFullyConfiguredDII() throws Exception
{
ServiceFactoryImpl factory = new ServiceFactoryImpl();
URL wsdlURL = new URL("http://" + getServerHost() + ":8080/jaxrpc-jbws1653/TestEndpoint?wsdl");
URL mappingURL = getResourceURL("jaxrpc/jbws1653/WEB-INF/jaxrpc-mapping.xml");
QName qname = new QName("http://org.jboss.test.ws/jbws1653", "TestService");
Service service = factory.createService(wsdlURL, qname, mappingURL);
TestEndpoint port = (TestEndpoint)service.getPort(TestEndpoint.class);
String retStr = port.echoString("kermit");
assertEquals("kermit", retStr);
assertNull(ClientHandler.message);