I am doing a POST to a C# web site. I have changed the web.config file as suggested.
<system.net> <settings> <httpWebRequest useUnsafeHeaderParsing="true" /> </settings> </system.net> I still get “The server committed a protocol violation. Section=ResponseStatusLine”. I only get the error when I POST 3 times in session. The first Post is good, the second or third will fail with the protocol error. Only one of the two will fail, it is not consistent. If I pause between POST (break point) all three function. Help?
