1
Answer

Consuming Java web service from .Net

sush_m

sush_m

19y
1.9k
1
Hi, I have a question, somebody with exposure please answer. I need to call a JAVA webservice from C# (VS.6 & SOAP tool kit or VS.net). The Java webservice has been deployed on SOAP RPC Router . But there is no absloute path for the WSDL docs, everything should go via this router. I have gone through different scenario and everywhere it is mentioned as the proxy should be created from the WSDL location or reference the absolute location of either asmx or wsdl like http:///context_root/services/?wsdl Is anyway can this be handled with out a absloute path https:///webservice/RPCRouter. Any help will be appreaciated. Thanks Sush
Answers (1)
0
swilkinson

swilkinson

NA 48 0 20y
The client machines NEEDS the .net framework that your app was written with. You can get the resistibutable here http://www.microsoft.com/downloads/details.aspx?FamilyId=262D25E3-F589-4842-8157-034D1E7CF3A3&displaylang=en Install this and you should just be able to copy the exe onto the client and it will run. You can deploy it if you wish to have the add/remove program stuff. To do this in VS.Pro (sorry have not seen standard so it might not help). Start a new project and select setup and deployment and pick setup project. Then add the built exe you wish to deploy, you can also add registry and shortcust stuff with this windows installer project. The only thing I could not get it to do was to install the framework (something to do with windows installer using it!?!). We had to switch to install sheild and write a proper setup to bundle it in. Cheers, Si