When i pass certain request through:
I sometimes get this problem: "The server committed a protocol violation. Section=Respons eStatusLine"
=(
i currently have this executing a line before the webresponse line(above):
(im not sure it that actually works/affects my webrequest/response)
but i am completely stumped on how to fix this problem...pleas e guide me
Code:
WebResponse response = (WebResponse)WebRequest.Create(url).GetResponse(); Stream responsestream = response.GetResponseStream();
=(
i currently have this executing a line before the webresponse line(above):
Code:
System.Net.Configuration.HttpWebRequestElement wr = new System.Net.Configuration.HttpWebRequestElement(); wr.UseUnsafeHeaderParsing = true;
but i am completely stumped on how to fix this problem...pleas e guide me
Comment