Recently i had some issues with SSL protocol error,while running the scripts in controller i am facing the "Error -27778: SSL protocol error when attempting to connect with host",so finally i got rid of that by using the below steps in the script
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.
We had same issue on vugen 11.50 with new patch also then we enabled the below setting
Run-Time Settings -> Preferences -> Select "WinInet Replay Engine instead of Sockets (Windows Only)."
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.
We had same issue on vugen 11.50 with new patch also then we enabled the below setting
Run-Time Settings -> Preferences -> Select "WinInet Replay Engine instead of Sockets (Windows Only)."
No comments:
Post a Comment