Hi, i have build a web service and a client for the web service and i want now to put them in different computers.
I made the web service and client with the eclipse wizard and at both computers i have installed the Apache tomcat 7.
I have a router to my network.
I put the web service at the first compter in the tomcat's webapps folder and it works fine at http://localhost:8080/TestService/services/Testclass. The internal IP of the first compter is 192.168.1.3.
I put the web service client in the second computer at the Tomcat's webapps folder.I change the settings at the client's java classes and i set the web service endpoint to "http://192.168.1.3:8080/TestService/services/Testclass" but when i run the client nothing happens. I guess I must configure tomcat first.
What should i do???