• SPEForums need your contributions to build up a strong repository of performance engineering resources.

"Error -27778: SSL protocol error when attempting to connect with host

vineetmishra

Administrator
I'm getting "Error -27778: SSL protocol error when attempting to connect with host" while running the newly recorded test script. Any clue how to solve this?
 
This is related to version of ssl being used. Try to keep the below code at the start of of script

use web_set_sockets_option("SSL_VERSION", "TLS");
web_set_sockets_option("SSL_VERSION", "1");

This forces the SSL connection to the server to use version 1 of the SSL protocol rather than letting the server suggest a version during the connection handshake. Let us know if it resolved the issue.
 
Back
Top