Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Fiddler: Error 502 Proxy Error

I am using Fiddler to debug all HTTP request of my ASP.NET application.

For a while (about 6 months) I had no problem. All HTTP requests appeared on Fiddler and so on.

The last two days Fiddler stoped working :/ Always returns the same error: "The request failed with HTTP status 502: Proxy Error ( The ISA Server denied the specified Uniform Resource Locator (URL). )."

The strange thing is that only happens to my application, i. e. all HTTP requests from youtube, email, etc, appear on Fiddler.

What is the problem here?

like image 350
rpf Avatar asked Dec 20 '11 18:12

rpf


1 Answers

From my case adding this line on OnBeforeRequest function in Fiddler Script fixed it for me,

oSession["x-OverrideSslProtocols"] = " ssl3;tls1.0;tls1.1;tls1.2";
like image 80
Imran Qadir Baksh - Baloch Avatar answered Sep 19 '22 12:09

Imran Qadir Baksh - Baloch