value = binding.complexWComplexReturn();
} catch (java.rmi.RemoteException re) {
throw new junit.framework.AssertionFailedError("complexWComplexReturn Exception caught: " + re );
}
try {
EmptyComplexType value = new EmptyComplexType();
binding.emptyComplexTypeIn(value);
} catch (java.rmi.RemoteException re) {
throw new junit.framework.AssertionFailedError("emptyComplexTypeIn Exception caught: " + re );
}
try {
EmptyComplexTypeHolder value = new EmptyComplexTypeHolder( new EmptyComplexType());
binding.emptyComplexTypeInout(value);
} catch (java.rmi.RemoteException re) {
throw new junit.framework.AssertionFailedError("emptyComplexTypeInout Exception caught: " + re );
}
try {
EmptyComplexTypeHolder value = new EmptyComplexTypeHolder();
binding.emptyComplexTypeOut(value);
} catch (java.rmi.RemoteException re) {
throw new junit.framework.AssertionFailedError("emptyComplexTypeOut Exception caught: " + re );
}
try {
EmptyComplexType value = null;
value = binding.emptyComplexTypeReturn();
} catch (java.rmi.RemoteException re) {
throw new junit.framework.AssertionFailedError("emptyComplexTypeReturn Exception caught: " + re );
}
try {