p.getRequestContext().put(
BindingProvider.SOAPACTION_URI_PROPERTY, "echoString");
p.getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, ENDPOINT_URL);
String request = "Hello World";
String response = proxy.echoString(request);
assertTrue(request.equals(response));
// Try the test again
response = proxy.echoString(request);
assertTrue(request.equals(response));