Search code examples
c#httpwebrequestfiddler

C# program with HttpWebRequest work only through Fiddler


http web request (post) not seinding directly 1 query (timeout error), if I run it through Fiddler it works perfectly.

What does Fiddler do with requests? I can't understand.


Solution

  • 95% of the time, this happens because you forgot to call .Close() on the GetResponseStream()-returned object. See http://blogs.telerik.com/fiddler/posts/13-02-28/help!-running-fiddler-fixes-my-app-