I have an HttpWebRequest installation using HTTPS, and the code works fine when Fiddler works .
When Fiddler is not running, I get a "request timeout" error.
Does anyone have any ideas what would be the reason? I have
a) Verify that the security policy exists as
if (this.IngoreCertificateErrors) ServicePointManager.ServerCertificateValidationCallback += delegate(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors sslPolicyErrors) { return true; };
b) I also do not allow firewall conflicts, etc.
What else can I try?
Edit: Just to be clear - my application basically connects to a website to get a report. In steps 1-3) log in, get the URLs for login and report. Step 4) after entering the system - get a report. My problem is that Step 4) ONLY works with the violinist?
Frederick
source share