
Originally Posted by
duffymo
Where does the Stock class come from in the stockquote example? It's not part of the code generated by XJC.
Some progress, but not there yet.
It dawned on me that IntelliJ allows me to import an existing project using Maven. I did that for stockquote, and my life improved.
However, the Main class for the JAX-WS client has three problems:
Only a default ctor for StockService; at Main line 41:
Code:
service = new StockService(new URL(args[0]), serviceName);
"cannot find symbol class Stock" - not part of the XJC-generated code; at Main line 43:
Code:
Stock stock = service.getStockSoap11();
"cannot find symbol method getStockSoap11()"; at Main line 43:
Code:
StockQuoteResponse response = stock.stockQuote(request);