vb.net – .net WebService,绕过ssl验证!

前端之家收集整理的这篇文章主要介绍了vb.net – .net WebService,绕过ssl验证!前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
好吧我再次工作一个web服务,其证书不是100%正确设置证书是为域* .domain1.com设置的,而api位于soap.shop.domain1.com/SOAP现在我无法连接到这个webservice然后我得到一个WebException“无法建立SSL / TLS安全通道的trush关系. – >
根据验证程序,远程证书无效.

现在我的问题是有没有办法绕过这个检查我使用普通的Web参考(2.0)而不是服务参考..

是的,您可以使用以下命令让ASP.NET忽略证书警告:
using System;
using System.Net;
using System.Security.Cryptography.X509Certificates;

namespace YourNamespace
    public class TrustAllCertificatePolicy : System.Net.ICertificatePolicy
    {
        public TrustAllCertificatePolicy() {}

        public bool CheckValidationResult(ServicePoint sp,X509Certificate cert,WebRequest req,int problem)
        {
            return true;
        }
    }
}
原文链接:https://www.f2er.com/vb/255954.html

猜你在找的VB相关文章