Reputation: 159
I need to call Java web service from .Net application and that web service should accept the parameters from .Net but am not sure about the procedure. If anyone have some idea then please let me know.
Upvotes: 0
Views: 359
Reputation: 120848
You should get the WSDL first, then using Eclipse (I would suggest Netbeans) you generate/create the Stubs and call the service. It is really nothing fancy at all. Once you have the WSDL the rest (how you generate the classes using Netbeans) is really covered a lot online.
Upvotes: 1
Reputation: 4581
.NET web service is SOAP web service. Just get WSDL, generate stubs and use it.
Upvotes: 2