
Hi,
I have one java (Servlet) project of online help desk. I am ruinning it on stand alone pc using Netbin software. But i have private network (LAN). So i want to run that project from any pc. Access to project should be from any syatem. Means can i access post 2 problems simultineously using 2 different system. To do this what type of settings i need to do? How to make it possible.
Kindly help me with this.
Thanks, Ganesh.

Hi if have already a LAN setup then you can run your project (Web project) on other computer which are connected in LAN.
If you are running on same computer then you might type at browser URL http://localhost:8080/YouAppName
you can also access this project from the other computer connected in the LAN. You just have to do is write the IP address of the computer instead of localhost. You will have to specify something like
http://192.168.100.165:8080/MyAppName
Thanks..........