Can anybody give me some background on how to create SOAP calls that use arrays as both inputs and method results?
Take the following example....
public String[][] findNames(int[] anIDs);
This method receives an input of an array of ints and returns a two
dimensional array of strings.
How should I go about building the client side soap call??
