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

0


source to share


3 answers


I think you will find that cassini does not allow remote connections. For what reason you can't run it from your IIS web server?



0


source


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

+1


source


0


source







All Articles