The following call returns a result in WinXP but not on Win7:
using (WebClient client = new WebClient())
{
var result = client.DownloadString("https://secure.plimus.com/jsp/validateKey.jsp");
}
I get "System.Net.WebException: The operation has timed out" exception
What is it that I'm doing wrong?