HTTP Debugging and Fiddler

| | |

Fiddler is a handy tool for testing and viewing HTTP request/response between your browser and the internet.it is used for HTTP debuging. a complete guide for fiddler can be found here http://msdn2.microsoft.com/en-us/library/Bb250446.aspx

Tricky situation where when you want to test your own web application local on your machine and start fiddler running your application but find nothing on fiddler was recorded.

Simply the problem is that the URL for your application is "http://Localhost/yourwebapp"
to solve this just replace localhost with your machine name.

a good use of fiddler is that it can save the recorded http sessions as web test application which can be used by Visual Studio Team suite 2005 as a test project.

0 comments: