Remote web debug service hosted by Cassini
Is there a way to remotely debug a web service on my local machine which is in Cassini?
those. On my local machine, I can go to http: // localhost: 1234 / webservice, but I cannot go to another machine and access http: // ip_address_of_my_machine: 1234 / webservice.
Is there a way?
Thanks, John
Use Fiddler!
Fiddler can act as a "reverse proxy", which means that it can forward incoming requests to a different port or web server.
Step # 0 Before working with any of the following options, you must allow other computers to connect to Fiddler. To do this, select Tools> Fiddler Options> Connections and select the Allow remote computers to connect check box. Then close Fiddler.
Option # 1: Configuring Fiddler as a Reverse Proxy Fiddler can be configured so that any traffic sent to http://127.0.0.1:8888 is automatically sent to a different port on the same computer. To set this configuration:
Run REGEDIT Create a new DWORD named ReverseProxyForPort inside HKCU \ SOFTWARE \ Microsoft \ Fiddler2. Set DWORD to the local port to which you want to redirect incoming traffic (usually port 80 for a standard HTTP server) Restart Fiddler Go to browser http://127.0.0.1:8888
Source: http://www.fiddler2.com/fiddler/help/reverseproxy.asp
source to share
And now in IIS7.5 you can: Configure IIS Express for external access to your VS2010 project
source to share