You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-user@axis.apache.org by Ben Souther <bs...@fwdco.com> on 2003/01/22 15:58:07 UTC

Array of Strings as input parameter

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?