stockQuote.setPctchange("100%");
stockQuote.setBid("9");
stockQuote.setAsk("11");
stockQuote.setSymbol("AXS");
stockQuote.setLast("5");
ComplexWComplex complexWComplex = new ComplexWComplex();
complexWComplex.setStock_Quote(stockQuote);
complexWComplex.setOutside(22);
try {
binding.complexWComplexIn(complexWComplex);
} catch (java.rmi.RemoteException re) {
throw new junit.framework.AssertionFailedError("complexWComplexIn Exception caught: " + re );
}
try {
binding.complexWComplexInout(new ComplexWComplexHolder(complexWComplex));
} catch (java.rmi.RemoteException re) {
throw new junit.framework.AssertionFailedError("complexWComplexInout Exception caught: " + re );
}
try {
ComplexWComplexHolder value = new ComplexWComplexHolder();
binding.complexWComplexOut(value);
} catch (java.rmi.RemoteException re) {
throw new junit.framework.AssertionFailedError("complexWComplexOut Exception caught: " + re );
}
try {
ComplexWComplex value = null;
value = binding.complexWComplexReturn();
} catch (java.rmi.RemoteException re) {
throw new junit.framework.AssertionFailedError("complexWComplexReturn Exception caught: " + re );
}
try {