How to invoke a webservice in .net from servlet application
Abhishek Reddy
Ranch Hand
Joined: Mar 28, 2006
Posts: 259
posted
0
Can anyone tell me how to invoke a webservice in .Net from Servlet?
Abhishek
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35223
7
posted
0
The beauty of WS is that you don't have to care which language it's implemented in. If you have a WSDL description, you can use any Java tool you like to create client code for it, e.g. the wsdl2java tool that comes with Axis.
Can give me links for such resources ..so that it will be easy for me to use?
Ugender Rekulampally
Ranch Hand
Joined: Nov 14, 2005
Posts: 130
posted
0
Abhishek, You dont have to worry about how(which language) the web services server implemented. call methods in your servelet-client as if the server is implemented in Java..
If you use Axis Engine then here is how you make calls to a service..
"getReferenceValues" is the service that I am calling with the argument "name"..