如何绕过 .Net C# 中的 SSL 证书发出 HTTPS SOAP 请求?

How to make HTTPS SOAP request bypassing SSL certificate in .Net C#?

我在尝试访问 c# .Net 项目中的 HTTPS 网络参考服务时遇到问题。

我在尝试向 Web 服务发送请求时收到此消息。

The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel

然后我找到了解决方案检查答案。

我将此代码放入我的 Web 服务 class 构造函数中。

ServicePointManager.ServerCertificateValidationCallback +=
                (mender, certificate, chain, sslPolicyErrors) => true;

它解决了问题。