I have wsdl and i have created a java skeleton/stubs/proxy/servicelocator using eclipse/Axis, would like to know how the client code would be, which will invoke the services
i have searched thro net but found the following
Service service = new Service();
Call call = (Call) service.createCall();
then invoke..
but the above code does not use the stubs/skeletons at all which was generated in eclipse
Can i know how to invoke the webservice using the skeleton/stubs/proxy/servicelocator
Thanks in advance
hardikkumar patel
Greenhorn
Joined: Jul 06, 2009
Posts: 3
posted
0
If you have created web Service using Axis2/Eclipse then you can use Web Services Explorer of Eclipse to test your web service.
Sachin Paradkar
Greenhorn
Joined: Jul 28, 2004
Posts: 6
posted
0
rudresh kumar wrote:Hi All,
I have wsdl and i have created a java skeleton/stubs/proxy/servicelocator using eclipse/Axis, would like to know how the client code would be, which will invoke the services
i have searched thro net but found the following
Service service = new Service();
Call call = (Call) service.createCall();
then invoke..
but the above code does not use the stubs/skeletons at all which was generated in eclipse
Can i know how to invoke the webservice using the skeleton/stubs/proxy/servicelocator
Thanks in advance
Hi Rudresh,
You can try using the below code for creating java clients .