Can anybody tell me how to prepare a client side call to a SOAP RPC service that has one parameter of type "int[]", like...
public String[][] findNames(int[] anIDArray)
How do I create the parameter instance? I've tried the following but it
won't compile...
fParams.addElement(new Parameter("anIDArray",
Array.class,
new Array(anIDArray),
null));
