• 【SSL】WebClient 请求 https 页面出错:未能创建 SSL/TLS 安全通道


    #问题:

      当向一个https的url上发送请求,报错:未能创建 SSL/TLS 安全通道;

    using (WebClient client = new WebClient())
    {
        string address="https://xxx.com";
        client.Headers.Add(HttpRequestHeader.ContentType, "text/xml");
    
        System.Text.ASCIIEncoding  encoding=new System.Text.ASCIIEncoding();
        var response = client.UploadData(address, "POST", encoding.GetBytes(msg));
    }

     #原因:

      ssl证书不受信任,验证失败;

    #解决方案:

      请求之前,进行如下设置;

    ServicePointManager.ServerCertificateValidationCallback += new System.Net.Security.RemoteCertificateValidationCallback(bypassAllCertificateStuff);
    
    private static bool bypassAllCertificateStuff(object sender, X509Certificate cert, X509Chain chain, System.Net.Security.SslPolicyErrors error)
    {
       return true;
    }

      简写

    ServicePointManager.ServerCertificateValidationCallback = delegate { return true; };

      整合

     1 public class Test
     2 {
     3     public void TestFun
     4     {
     5       ServicePointManager.ServerCertificateValidationCallback = new System.Net.Security.RemoteCertificateValidationCallback(CheckValidationResult);
     6        using (WebClient client = new WebClient())
     7       {
     8           string address="https://xxx.com";
    9         client.Headers.Add(HttpRequestHeader.ContentType,"text/xml"); 10       System.Text.ASCIIEncoding encoding=new System.Text.ASCIIEncoding(); 11       var response = client.UploadData(address, "POST", encoding.GetBytes(msg)); 12       } 13 } 14 private bool CheckValidationResult(object sender, System.Security.Cryptography.X509Certificates.X509Certificate certificate, System.Security.Cryptography.X509Certificates.X509Chain chain, System.Net.Security.SslPolicyErrors errors) 15 { // 总是接受 认证平台 服务器的证书 16 return true; 17 } 18 }
  • 相关阅读:
    脚本 页面截取
    net Email 发送(借助第三方)
    查询表、存储过程、触发器的创建时间和最后修改时间(转)
    ActionScript简介
    mysql 1064 USING BTREE问题
    浅谈SQL SERVER函数count()
    程序员学习能力提升三要素
    构建杀手级应用的 JavaScript 框架、工具和技术
    javascript刷新页面方法大全
    html页<![if IE]>...<![endif]>使用解说
  • 原文地址:https://www.cnblogs.com/willingtolove/p/9403796.html
Copyright © 2020-2023  润新知