Reputation: 191
I am trying to call a web service that is defined inside a server by using Java and I have the WSDL of the web service. I used Web Service Client which is provided in Eclipse to generate the stubs and artifacts from the WSDL as how the tutorial in this website: http://px.pats.no/px/Eclipse_tutorial.html
I have done some research over the Net but I am confused with a few things.
Thanks in advance for any help.
Upvotes: 2
Views: 8900
Reputation: 21
Hi You can call web service by creating stub and skeleton based on WSDL you have using WSDL2JAVA command. Once stub and skeleton will get created you need to create object of stub in your new service operation(.java class) and once you get the object you will get all child setter methods exposed in WSDL
Upvotes: 2