test.wsdl.interop3.emptysa.SoapInteropEmptySAPortType binding;
try {
binding = new test.wsdl.interop3.emptysa.EmptySALocator().getSoapInteropEmptySAPort();
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
jre.getLinkedCause().printStackTrace();
throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
}
assertTrue("binding is null", binding != null);
// Test operation
java.lang.String value = null;
String expected = "empty SOAP Action";
value = binding.echoString(expected);
// validate results
assertEquals(expected, value);