Is it possible to to send an array of Strings as an input parameter?
Example:
call.invoke(new Object[]{new String("param1"),
new String("param2"),
new String[]{"param3a",
"param3b"}
);If so, can anyone point me to an example the syntax used to describe an array of XSD_STRING in the call.addParameter method?
