WebClient 调用在 WinXP 中有效,但在 Win7 上无效



以下调用在WinXP中返回结果,但在Win7上不返回结果:

 using (WebClient client = new WebClient())
            {
                var result = client.DownloadString("https://secure.plimus.com/jsp/validateKey.jsp");
            }

我收到"系统.Net.Web异常:操作已超时"异常

我做错了什么?

您应该尝试查看 System.Net 跟踪是否可以提供有关连接尝试的更多信息,

http://blogs.msdn.com/b/asiatech/archive/2009/04/08/using-system-net-trace-to-troubleshooting-ssl-problem-in-net-2-0-application.aspx

更好地从Windows XP和Windows 7收集跟踪文件。比较它们,您将看到原因。

相关内容

  • 没有找到相关文章

最新更新