p.getRequestContext().put(
BindingProvider.SOAPACTION_URI_PROPERTY, "headerTest");
p.getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, ENDPOINT_URL);
String request = "Hello World";
String response = proxy.headerTest(1, request);
assertTrue(response != null);
assertTrue(response.indexOf(request) > 0);
// Try the test again
request = "Hello World";