call.setOperationName(new QName(TARGET_NAMESPACE, "longWrapperArrayTest"));
QName xmlType = new QName("http://org.jboss.ws/marshall/rpclit/types", "LongArray");
call.addParameter("arrayOfLong_1", xmlType, params.getClass(), ParameterMode.IN);
call.setReturnType(xmlType, params.getClass());
call.setTargetEndpointAddress(TARGET_ADDRESS);
return (Long[])call.invoke(new Object[] { params });
}
public Long[][] longWrapperMultiArrayTest(Long[][] params) throws Exception
{
Call call = service.createCall();