i have created a program and try to post a string on a site and get this error "The server committed a protocol violation. Section=ResponseStatusLine" after this code of line "gResponse = (HttpWebResponse)gRequest.GetResponse()" how can i fix this Exception
|
feedback
|
|
Try putting this in your app/web.config:
If this doesn't work you may also try setting the | |||
|
feedback
|
|
One way to debug this (and to make sure it is the protocol violation that is causing the problem), is to use Fiddler (Http Web Proxy) and see if the same error occurs. If it doesn't (i.e. Fiddler handled the issue for you) then you should be able to fix it using the UseUnsafeHeaderParsing flag. If you are looking for a way to set this value programatically see the examples here: http://o2platform.wordpress.com/2010/10/20/dealing-with-the-server-committed-a-protocol-violation-sectionresponsestatusline/ | |||
|
feedback
|
|
Another possibility: when doing a POST, the server responds with a 100 continue in an incorrect way. This solved the problem for me: request.ServicePoint.Expect100Continue = false; | |||
|
feedback
|