WSIFMessage input = operation.createInputMessage();
input.setName("GetQuoteInput");
input.setObjectPart("symbol", "" );
WSIFMessage output = operation.createOutputMessage();
WSIFMessage fault = operation.createFaultMessage();
doSyncOp( operation, input, output, context );
float value = ((Float)output.getObjectPart( "quote" )).floatValue();
System.out.println("sync stockquote found value = " + value);