HttpWebRequest

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

My application is accessing a service on the internett using the
HttpWebRequest object. This has been working fine for a long time, but after
upgrading the .net framework to v1.1 this fails.

After posting my request the server begins to answer, but receives a RST
command from the client almost imediately. I'm assuming this is related to
the timeout parameter on the HttpWebRequest object, but no matter how high
I'm setting this the same thing happens.
Is there anything else that can trigger this reset command. How am I
supposed to set the Timeout parameter correctly?
 
Just discovered the
<settings>
<httpWebRequest useUnsafeHeaderParsing="true" />
</settings>

and this solves the problem :-)

Thanks
 
Back
Top