call.setOperationName(new QName(TARGET_NAMESPACE, "bigIntegerArrayTest"));
QName xmlType = new QName("http://org.jboss.ws/marshall/rpclit/types/arrays/java/math", "BigIntegerArray");
call.addParameter("arrayOfBigInteger_1", xmlType, params.getClass(), ParameterMode.IN);
call.setReturnType(xmlType, params.getClass());
call.setTargetEndpointAddress(TARGET_ADDRESS);
return (BigInteger[])call.invoke(new Object[] { params });
}
public BigInteger[][] bigIntegerMultiArrayTest(BigInteger[][] params) throws Exception
{
Call call = service.createCall();