p.getRequestContext().put(
BindingProvider.SOAPACTION_USE_PROPERTY, Boolean.TRUE);
p.getRequestContext().put(
BindingProvider.SOAPACTION_URI_PROPERTY, "echo");
String request = "dlroW elloH";
String response = proxy.echo(request);
assertTrue(request.equals(response));
// Try the call again to verify behavior
response = proxy.echo(request);