SSL Protocol error means while running the scripts in controller the "Error -27778: SSL protocol error when attempting to connect with host",so finally by using the below steps in the script i have resolved the issue
Keep the below code at the start of of script
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.
Keep the below code at the start of of script
- 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.
No comments:
Post a Comment