HttpWebRequest WebResponse PROXY URLENCODE 1 昨天实现了 C# XML HTML SgmlReader sitemap http://www.shengfang.org/blog/p/html2xmlsitemap.php 今天继续完善: 增加PROXY支持: www.shengfang.org 换了一台机器,出现如下错误: A first chance exception of type 'System.Net.WebException' occurred in System.dll System.Net.WebException: The remote server returned an error: (407) Proxy Authentication Required. at System.Net.HttpWebRequest.GetResponse() at html2xml.Form1.button1_Click(Object sender, EventArgs e) in E:\sf\html2xml\Form1.cs:line 259 The remote server returned an error: (407) Proxy Authentication Required 最后增加 PROXY 设置 认证 NetworkCredential myCred = new NetworkCredential("sf", "sfsfsf", "www.shengfang.org"); WebProxy proxyObject = new WebProxy("www.shengfang.org", 80); proxyObject.Credentials = myCred; // 当主机为本地时,禁用代理,即不使用句点。 proxyObject.BypassProxyOnLocal = true; WebRequest request = WebRequest.Create(sPageUrl); request.Proxy =proxyObject; 问题1: www.shengfang.org BAIDU搜索总是失败: www.shengfang.org GET /s?wd=%CA%A2%B7%C5&cl=3 HTTP/1.1 发送的HTTP头信息 www.shengfang.org Content-Type : application/x-www-form-urlencoded Referer : http://www.baidu.com Accept-Language : zh-cn “html2xml.exe”: 已加载“f:\winxp\assembly\gac\system.resources\1.0.5000.0_zh-chs_b77a5c561934e089\system.resources.dll”,未加载符号。 未处理的“System.Net.WebException”类型的异常出现在 system.dll 中。 其他信息: 基础连接已经关闭: 接收时发生意外错误。 System.Net.WebException: 基础连接已经关闭: 接收时发生意外错误。 at System.Net.HttpWebRequest.CheckFinalStatus() at System.Net.HttpWebRequest.GetResponse() at html2xml.Form1.getPage(String url, String payload) in p:\测试代码\html2xml\form1.cs:line 335 在 内部网 搜索 通过,但是问题在于编码: www.shengfang.org 正确的搜索POST数据:好像是直接的十六进制数据 stext=%CA%A2%B7%C5&imageField.x=22&imageField.y=7 错误的搜索POST数据: 调用了 HttpUtility.UrlEncode 进行处理 stext=%e7%9b%9b%e6%94%be&imageField.x=22&imageField.y=7 WIN2003网络监视器数据: www.shengfang.org 000001F0 47 43 50 4D 44 43 41 49 0D 0A 0D 0A 73 74 65 78 GCPMDCAI....stex 00000200 74 3D 25 43 41 25 41 32 25 42 37 25 43 35 26 69 t=%CA%A2%B7%C5&i 00000210 6D 61 67 65 46 69 65 6C 64 2E 78 3D 32 32 26 69 mageField.x=22&i 00000220 6D 61 67 65 46 69 65 6C 64 2E 79 3D 37 mageField.y=7 1207 字体:大 中 小 |