132133134135136137138
return new StringArrayTestResponse(parameters.getStringArray()); } public test.wsdl.marshall2.types.StringTestResponse stringTest(test.wsdl.marshall2.types.StringTest parameters) throws java.rmi.RemoteException { return new StringTestResponse(parameters.getStringValue()); }
143144145146147148149
353637383940414243
// Time out after a minute binding.setTimeout(60000); // Test operation ShortArrayTestResponse value = null; value = binding.shortArrayTest(new ShortArrayTest(new short[]{1,2,3})); assertEquals(3,value.getShortArray().length); }
15161718192021
import test.wsdl.marshall3.types.StringArrayTest; import test.wsdl.marshall3.types.StringArrayTestResponse; public class Marshall3TestPort1SoapBindingImpl implements test.wsdl.marshall3.MarshallTest{ public ShortArrayTestResponse shortArrayTest(ShortArrayTest parameters) throws java.rmi.RemoteException { return new ShortArrayTestResponse(parameters.getShortArray()); }