Hello, as a sequel to my last post, could anyone tell me how to access a web service deployed on a local area network (LAN). My development laptop is one of many on the network with name Igwe, it is under the workgroup development and I have
tomcat running on it. How can a user on our network but on a different machine access a web service deployed on tomcat on my machine from his own machine.
using kSOAP j2SE, my code looks like this:
SoapObject("http://localhost:8080/axis/CM_ErrorWebService.jws","CM_ErrorCheck");
HttpTransportSE transport = new HttpTransportSE("http://localhost:8080/axis/CM_ErrorWebService.jws","");
what changes should be made to the URL so that it can get to axis/CM_ErrorWebService.jws on my machine instead of using localhost:8080. Should I share the folder or what?
Thanks. Igwe.