Posts

Showing posts with the label asp

Using Fiddler with ASP NET Applications

Using Fiddler with ASP NET Applications Most of the web developers will know about Fiddler. Using Fiddler u can log the HTTP traffic between your application & Webservice, here Fiddler acts as a proxy in between your application & the Webservice. To Use with ASP.NET set the following into your web.config, it will start logging all the HTTP Traffic. <system.net> <defaultProxy> <proxy proxyaddress="http://localhost:8888" /> </defaultProxy> </system.net> download  file  now