252025 发表于 2015-6-16 17:20:14

loadrunner 11报Error -27776要怎么解决。

系统环境:
64位win7系统 32位loadrunner11+ie8

loadrunner录制完回放时报错: Error -27776: Server "iecvlist.microsoft.com" shut connection during attempt to negotiate SSL session       

回放log:
Action.c(285): Error -27776: Server "iecvlist.microsoft.com" shut connection during attempt to negotiate SSL session       
Action.c(285): Warning -26000: Empty or no response for URL="https://iecvlist.microsoft.com/ie11blocklist/1401746408/versionlist.xml"       
Action.c(285): Warning -26200: At least one of the resources specified by EXTRARES has not been downloaded due to the above error(s)       
Action.c(285): web_url("versionlist.xml") highest severity level was "ERROR", 0 body bytes, 0 header bytes       
Ending action Action.

坐等高手回复

jingzizx 发表于 2015-6-17 12:17:38

原因:Loadrunner默认发送是通过sockets(将http转换为sockets)发送的,而sockets默认ssl的版本为ssl23
解决办法:
方法1:使用winlnet replay instead of Sockets(windows only)回放(在runtime-settings中设置).winlnet是微软的一个通信引挚,其IE是基于这个通信引挚,winlnet不支持unix,而且该默式在vuser线程默式不能准确模块网络连接的速度以及连接的数量。
方法2:增加语句web_set_sockets_option("SSL_VERSION","3");设置使用ssl的版本,即:
web_set_sockets_option("SSL_VERSION","3");
楼主试一试人家的解决办法


josee 发表于 2015-8-17 13:48:51

jingzizx 发表于 2015-6-17 12:17
原因:Loadrunner默认发送是通过sockets(将http转换为sockets)发送的,而sockets默认ssl的版本为ssl23
...

那个语句是随便加在任何位置吗?
页: [1]
查看完整版本: loadrunner 11报Error -27776要怎么解决。