我已经阅读了有关使用代理的SSL问题的分配,我认为它是ssl证书验证的原因。但我已经测试了不同的方法来设置它始终接受SSL而没有成功。我的代码适用于HTTP,但对于HTTPS,它在连接上“挂起”然后失败。
我的代码:
ServicePointManager.ServerCertificateValidationCallback = delegate { return true; };
string response;
try
{
using (WebClient wc = new WebClient())
{
var ProxyA = "192.168.0.103:8888".Split(':');
string PHost = ProxyA[0];
int PPort = Int32.Parse(ProxyA[1]);
wc.Proxy = new WebProxy(PHost, PPort);
response = wc.DownloadString("https://www.mittip.se");
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}