test.wsdl.webref.DoubleBackServiceSoapBindingStub binding;
try {
binding = (test.wsdl.webref.DoubleBackServiceSoapBindingStub)
new test.wsdl.webref.DoubleBackPortTypeServiceLocator().getDoubleBackService();
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
jre.getLinkedCause().printStackTrace();
throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
}
assertNotNull("binding is null", binding);
// Time out after a minute
binding.setTimeout(60000);
// Test operation
java.lang.String value = null;
value = binding.echo( "hello" );
assertEquals( "hellohello", value);