Hi ! While trying to invoke a service say
String calculate(String name,int age) is it that, the order of the parameters of the service has to be maintained in the client side while setting the Call.addParameter() even when we set the parameter name . Call.addParameter("name",Type,.....) Call.addParameter("age",Type,.....) In that case I couldn't get the real value for setting the parameter name in the client side. Does the server retrieves the parameter name & corresponding value from the SOAP message and invokes the service or does it expects the values in the same order ? Kindly clarify me about my understanding. Regards Kumar Raj