0

我正在Could Not Create SSL/TLS Secure Channel参加 UFT API 测试。我们在事件处理程序和端点地址中指定了 HTTP RequestHeaders。由于我们限制提供,我无法提供太多细节。知道为什么我们会收到此错误吗?我提到了这一点,但提供后我仍然收到错误:

ServicePointManager.ServerCertificateValidationCallback += (sender, certificate, chain, errors) => true;
4

1 回答 1

0

可能是证书不兼容,例如证书只允许 TLS 1.2,而您的客户端只支持 TLS 1.1 或其他算法。

于 2019-02-22T09:13:04.063 回答