UFT API测试:无法创建SSL / TLS安全通道

问题描述 投票:0回答:1

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

ServicePointManager.ServerCertificateValidationCallback += (sender, certificate, chain, errors) => true;
web-services hp-uft web-api-testing uft14 uft-api
1个回答
0
投票

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

© www.soinside.com 2019 - 2024. All rights reserved.