31323334353637
private StockQuoteClient axis2Client; @Override public void init() { super.init(); axis2Client = new StockQuoteClient(); }
4647484950515253
} } @Test public void invokeRPC() { StockQuoteClient sc = node.getService(StockQuoteClient.class, "StockQuoteClient"); Assert.assertEquals(10.0f, sc.getPrice("foo")); }