Reputation: 7827
I am new to webservice first i used eclipse for consuming a third party free webservice "http://www.webservicex.net/stockquote.asmx?WSDL" tested the webservice successfuly the following java files are created in my src folder
then i tried without eclipse this time using axis and command prompt, added all the D:\axis-1_4\lib jars to my class-path
executed the following command
java org.apache.axis.wsdl.WSDL2Java http://www.webservicex.net/stockquote.asmx?WSDL
now i got only
the file StockQuoteSoapProxy.java is missing i have tried my times but unable to get StockQuoteSoapProxy.java file
Upvotes: 0
Views: 186
Reputation: 83
With this command line you will be able to generate all:
wsdl2java -uri http://xxxxxxxx/?wsdl -p client.package -d xmlbeans -s
Upvotes: 1