Can I access ASP.NET Development server in an intranet?

Yes you can! And you don’t need IIS

Just use a simple Java TCP tunnel. Download this Java app & just tunnel the traffic back.
http://jcbserver.uwaterloo.ca/cs436/software/tgui/tcpTunnelGUI.shtml

In command prompt, you’d then run the java app like this… Let’s assume you want external access on port 80 and your standard debug environment runs on port 1088…

java -jar tunnel.jar 80 localhost 1088

(Also answered here: Accessing asp. net development server external to VM)

Leave a Comment