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