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

时间:2012-06-08 07:12:34

标签: c# .net windows-7 bluesnap

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

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

我得到“System.Net.WebException:操作超时”异常

我做错了什么?

1 个答案:

答案 0 :(得分:3)

您应该尝试查看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收集跟踪文件。比较它们,您将看到原因。