StringRespTypeDocument resp = port.bareNoParam();
assertEquals("Get a wrong response", "Get the request!", resp.getStringRespType());
InDecimalDocument xd = InDecimalDocument.Factory.newInstance();
xd.setInDecimal(new BigDecimal(123));
OutStringDocument response = port.nillableParameter(xd);
assertEquals("Get a wrong response", "Get the request 123", response.getOutString());
InDocument document = InDocument.Factory.newInstance();
TradePriceData data = document.addNewIn();
data.setTickerPrice(12.33F);
data.setTickerSymbol("CXF");