try {
int[][][] value = binding.arrayMReturn();
} catch (java.rmi.RemoteException re) {
throw new junit.framework.AssertionFailedError("arrayMReturn Exception caught: " + re);
}
ComplexAll complexAll = new ComplexAll();
complexAll.setAreaCode(512);
complexAll.setExchange("838");
complexAll.setNumber("4544");
try {
binding.complexAllIn(complexAll);
} catch (java.rmi.RemoteException re) {
throw new junit.framework.AssertionFailedError("complexAllIn Exception caught: " + re);
}
try {
binding.complexAllInout(new ComplexAllHolder(complexAll));
} catch (java.rmi.RemoteException re) {
throw new junit.framework.AssertionFailedError("complexAllInout Exception caught: " + re );
}
try {
ComplexAllHolder value = new ComplexAllHolder();
binding.complexAllOut(value);
} catch (java.rmi.RemoteException re) {
throw new junit.framework.AssertionFailedError("complexAllOut Exception caught: " + re );
}
try {
ComplexAll value = null;
value = binding.complexAllReturn();
} catch (java.rmi.RemoteException re) {
throw new junit.framework.AssertionFailedError("complexAllReturn Exception caught: " + re );
}
ComplexSequence complexSequence = new ComplexSequence();