TradePriceData data = document.addNewIn();
data.setTickerPrice(12.33F);
data.setTickerSymbol("CXF");
port.putLastTradedPrice(document);
InoutDocument inOut = InoutDocument.Factory.newInstance();
data = inOut.addNewInout();
data.setTickerPrice(12.33F);
data.setTickerSymbol("CXF");
Holder<InoutDocument> holder = new Holder<InoutDocument>(inOut);
port.sayHi(holder);
assertEquals("Get a wrong response", "BAK", holder.value.getInout().getTickerSymbol());