Does it work when Fiddler's "Streaming mode" is enabled?
How are you sending the HTTP request? Did you change the timeout on
that handle?
On Jun 23, 8:27 am, Sparky12 <
timo...@gmail.com> wrote:
> Hi Guys,
>
> So I have setup a httpwebrequest using HTTPS and the code is working
> fine when fiddler is running.
>
> When Fiddler isn't running - I get a "request timeout" error.
>
> Does anyone have any ideas what would be the cause? I have
>
> a) Ensured that security policy exists as per
>
> if (this.IngoreCertificateErrors)
> ServicePointManager.ServerCertificateValidationCallback += delegate
> (object sender, X509Certificate certificate, X509Chain chain,
> SslPolicyErrors sslPolicyErrors) { return true; };
>
> b) I have also ensure no firewall conflicts etc
>
> What else can I try?
>
> Just to be clear - my app basically logins to a website to get a
> report.
>
> On steps 1-3) login, get urls for login and report.
> Step 4) once logged in - get report.
>
> The problem I have is that Step 4) ONLY works with fiddler ? When
> Fiddler isn't running I get a "remote timeout" ?