// TODO Auto-generated method stub
String END_POINT = "http://localhost:8080/axis2/services/MyService";
StockQuoteStub stub = new StockQuoteStub();
StockQuoteStub.GetQuote getQuote = new StockQuoteStub.GetQuote();
getQuote.setSymbol("10");
try {
StockQuoteStub.GetQuoteResponse resp = stub.getQuote(getQuote);
System.out.println("result :: " + resp);
} catch (RemoteException e) {
// TODO Auto-generated catch block e.printStackTrace
}
No comments:
Post a Comment