Hi Ravi,
As I know:
Question:
1. When the call.addParameter is done, does the parameter sequence matters.
Should I add IN, INOUT and OUT parameters in that order?
--> The Parameters should be added in the right order
2. when the instruction call.invoke(object[]) is called, does the values
passed need to be in the same sequence as the input and inout parameters.
--> Also the Array should have the same sequence
3. Does a webservice call will have both return value and outputValues (
call.invoke and call.getOutputValues)
--> Dont understand the question correctly?
You can add the return type with:
rpc.setReturnType(XMLType.XSD_STRING);
Tomi