我需要在路由器中读取一个位置,但是我得到以下异常 -
ServerProtocolViolation "The server committed a protocol violation.
Section=ResponseHeader Detail=CR must be followed by LF"
当我使用.DownloadString(url)
函数时会发生这种情况。有没有办法让WebClient
忽略协议违规?谷歌搜索告诉我应该在某处设置useUnsafeHeaderParsing
选项。我可以通过程序来完成吗?如果我使用它会有什么影响?
编辑:附加代码 -
public Readlog() {
WebClient wc = new WebClient();
string url = @"http://192.168.0.1/setup.cgi?next_file=log.htm&todo=cfg_init";
Console.WriteLine(url);
try {
//wc.Headers.Add("User-Agent", "Mozilla/5.0(Windows; U; Windows NT 5.2; rv:1.9.2) Gecko/20100101 Firefox/3.6");
wc.Credentials = new NetworkCredential("admin", "admin");
//Next line causes exception System.Net.WebException
//Message - "The server committed a protocol violation. Section=ResponseHeader Detail=CR must be followed by LF"
//May be I need to use useUnsafeHeaderParsing somehow to avoid that
string result = wc.DownloadString(url);
Console.WriteLine(result);
} catch (WebException we) {
System.Diagnostics.Trace.WriteLine(we.ToString());
}
}
答案 0 :(得分:23)
看起来最简单的方法是在您的应用中包含.config文件,其中包含以下内容:
<system.net>
<settings>
<httpWebRequest useUnsafeHeaderParsing = "true"/>
</settings>
</system.net>
然而,它也可以在代码中完成,但它似乎有点混乱:
另请注意,该属性的MSDN定义是
忽略设置此属性 在期间发生的验证错误 HTTP解析。
所以我说它使用起来相当安全,虽然它确实只提到它是为了向后兼容。
答案 1 :(得分:0)
我在自己的网络服务器中遇到此问题,在标题中我已更改
HTTP/1.x 200 OK
到
HTTP/1.0 200 OK
现在它可以在我使用浏览器(chorome或...)或WebClient(c#)时使用