Answered by:
using local ip instead of 127.0.0.1 or localhost on asp.net development server

Question
-
User-1769738303 posted
hi,
I wont use IIS due to debug purposes.
I wantto debug my asp.net application when I type http:/192.168.1.117:8080/test.aspx nothing happens.
I wantto access this address using my android device which is on my LAN.
I dont wantto access on same PC.I can access using address:
http://localhost:8080/test.aspx
or
http://127.0.0.1:8080/test.aspx
but I dont want them. because I wantto trigger the debug breakpoints using an android device on my LANSunday, September 1, 2013 4:50 PM
Answers
-
User-691245060 posted
http:/192.168.1.117:8080/test.aspx nothing happens.you need to host in your local IIS Server, bit IIS express....
thanks,
- Marked as answer by Anonymous Thursday, October 7, 2021 12:00 AM
Monday, September 2, 2013 7:48 AM
All replies
-
User-1315512054 posted
Hello,
If your android is in your local network then it should be able to see the IP 192.168.1.117. Just make sure that you enable external connections on port 8080 via your firewall settings.
Regards
Monday, September 2, 2013 3:03 AM -
User-1769738303 posted
android is in my local network.but cant see web using 192.168.1.117 (static local ip of the asp.net development server running)
Im sure firewall on modem is OFF. and also firewall service is totally disabled from services on PC too.
no luck.
it shall be a restriction of the webdev.server40.exe
Monday, September 2, 2013 3:23 AM -
User-2007877324 posted
Which version of Visual Studio are you using? Also how are you running the web site and what is the OS. Depending on your environment there are multiple solutions.
You can get started by looking at these links:
http://www.codeproject.com/Articles/38132/Remote-IIS-Debugging-Debug-your-ASP-NET-Applicatio
http://msdn.microsoft.com/en-us/library/ms178109(VS.80).aspx
Monday, September 2, 2013 4:28 AM -
User-691245060 posted
http:/192.168.1.117:8080/test.aspx nothing happens.you need to host in your local IIS Server, bit IIS express....
thanks,
- Marked as answer by Anonymous Thursday, October 7, 2021 12:00 AM
Monday, September 2, 2013 7:48 AM -
User-1769738303 posted
IIS express is the absolute solution.
but I didnt wantto install it.
so I found solution with zero configuration in a minute using a small http proxy tool.
Monday, September 2, 2013 10:27 AM