未能为 SSL/TLS 安全通道建立信任关系解决

warning: 这篇文章距离上次修改已过566天,其中的内容可能已经有所变动。

       未能为 SSL/TLS 安全通道建立信任关系解决

win2003 ,ie7,ie8用程序访问某些https网站时,老是提示 未能为 SSL/TLS 安全通道建立信任关系解决

 

 解决办法:(抄别人的)
    3.1:定义一个类,来对远程X.509证书的验证,进行处理,返回为true.我们要自己定义一个类,然后在客户单调用WCF服务之前,执行一次即可。代码如下:

 public static class Util
    {
        /// <summary>
        /// Sets the cert policy.
        /// </summary>
        public static void SetCertificatePolicy()
        {
            ServicePointManager.ServerCertificateValidationCallback
                       += RemoteCertificateValidate;
        }

        /// <summary>
        /// Remotes the certificate validate.
        /// </summary>
        private static bool RemoteCertificateValidate(
           object sender, X509Certificate cert,
            X509Chain chain, SslPolicyErrors error)
        {
            // trust any certificate rgb(0, 128, 0);">
            System.Console.WriteLine("Warning, trust any certificate");
            return true;
        }
    }

     你要在调用操作点先调用这个方法: Util.SetCertificatePolicy();
                sResult = wcfServiceProxyHttp.SayHello(sName);

none
最后修改于:2023年05月08日 07:55

评论已关闭