Click here to Skip to main content
16,017,788 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi,

We copied a web application in IIS.When I browse using local host the application is working.We would like to access the same application in another computer within the network without Internet.

The hosted PC will act as a dummy server and the client computer should access the application smoothly as localhost surfing.

Please help.If we put the IP Address the application can access.Is there any another option to access the application within the nertwork without IP browsing.

Regards
Sreejith
Posted
Comments
Ashutosh shukla207 28-Dec-15 2:05am    
read this carefully , u will get the solution

http://stackoverflow.com/questions/9682262/how-do-i-connect-to-this-localhost-from-another-computer-on-the-same-network

1 solution

Accessing an other computer on your local network for any purpose is possible in a few different ways...
1. By IP - it is the most direct way as an IP directly represent a computer (device) on your network
2. By name - in this case the name will be translated using your DNS service and then the resolved IP will be used
3. By map - you can map any name to any IP address (more than one name to the same address, but not the other way!) using the hosts[^] file. This will - locally - resolve the name to the IP address and then that IP will be used

As you can see all the options fall back to the IP as the lowest level of access, and to be honest I can't see a reason why not to use it in a local, test environment...
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900