I added the following main method to test the wrapper class as a java
application and it worked as expected.  Still can't get it to work from CF. 
Any ideas?

public static void main(java.lang.String args[])
{
      try{
                java.lang.String symbol = args[0];
                java.lang.String strQuote = null;
                StockQuoteStub wsStockQuote = new StockQuoteStub();
                GetQuote objGetQuote = new GetQuote();
                objGetQuote.setSymbol(symbol);
                strQuote = 
wsStockQuote.GetQuote(objGetQuote).getGetQuoteResult();      
                System.out.println("\n" + strQuote + "\n");

        } catch(Exception e){
            e.printStackTrace();
            System.out.println("\n\n\n");
        }
}
-- 
View this message in context: 
http://www.nabble.com/What-is-the-correct-way-to-instantiate-a-Axis2-client-stub-class--tp15809428p15814281.html
Sent from the Axis - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to