StringRespType resp = port.bareNoParam();
assertEquals("Get a wrong response", "Get the request!", resp.getStringRespType());
InDecimal xd = new InDecimal();
xd.setInDecimal(new BigDecimal(123));
OutString response = port.nillableParameter(xd);
assertEquals("Get a wrong response", "Get the request 123", response.getOutString());
In data = new In();
data.setTickerPrice(12.33F);
data.setTickerSymbol("CXF");
port.putLastTradedPrice(data);