WSE +自签名证书

时间:2016-01-28 17:09:16

标签: c# ssl self-signed wse

WSE(Web服务增强功能)上有一个旧代码。现在,用于HTTPS的“沙盒”服务开始使用自签名证书。 现在在沙箱中我收到错误 - 无法创建SSL / TLS安全通道。 这样的事情没有用。

System.Net.ServicePointManager.ServerCertificateValidationCallback =
                (sender, certificate, chain, sslPolicyErrors) => true;

我如何忽略证书?

1 个答案:

答案 0 :(得分:0)

应该可以做这样的事情来忽略证书验证。

ServicePointManager.ServerCertificateValidationCallback = delegate { return true; };

您还可以查看此问题和答案,了解可能更适合您情况的其他详细信息。

How to ignore the certificate check when ssl