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 Yu Chen <uw...@rz.uni-karlsruhe.de> on 2002/09/29 15:50:30 UTC

How to pass an array between server and client?

i.e.  there is a method in a Service

public aService{
      public String[] arrayMeth(int[] arg){
	String[] string_Array = ...;
	return string_Array;
      }
}

Then, how can I write the programm of client side:
call.setReturnType( org.apache.axis.encoding.XMLType.???);
and,
how: call.setParameter(.......);   ?
Any helps appreciated.
Chen