首页 > 代码库 > Connection termination(by client)” 错误的处理方法

Connection termination(by client)” 错误的处理方法

背景:

在一些项目,当我们使用LR录制脚本的时候,在我们安装认证我们无法启动[网址= ] HTTPS [/url]的IE插件页面显示空白,没有事件的记录,Firefox也一样

在记录日志,我们会发现 “Connection termination(by client)” 的错误

 

分析:
原因是是loadrunner 并不支持该格式的证书。我们安装的证书格式是.er,但是loadRunner只支持 .pem的格式.

 

解决方案:
1. 我安装了证书
2.输出 证书 (base64), 如:c:/test.cer
3. 使用OpenSSL tool来转换证书的格式
4.下载OpenSSL
5.安装 OpenSSL
6.打开cmd命令工具,进入OpenSSL的bin目录
7.输入 “openssl” 进入 OpenSSL模式
8.输入 “x509 –inC:/test.cer–out C:/test.pem”
9.格式为 .pem的证书会在C盘产生
10. 我把格式为 .pem 的证书导入IE
11. 完成以上步骤, loadrunner就可以在 IE正常执行
2. 当录制脚本的时候, 使用 the web_set_certificate() 方法把证书添加到脚本中.

Connection termination(by client)” 错误的处理方法