Salesforce

How to test connectivity when using SSL

« Go Back

Information

 
TitleHow to test connectivity when using SSL
URL NameHow-to-test-connectivity-when-using-SSL
Article Number000187958
EnvironmentProduct: OpenEdge
Version: 10.x, 11.x, 12.x
OS: All supported platforms
Other: SSL
Question/Problem Description
How to test connectivity when using SSL.
Steps to Reproduce
Clarifying Information
Error Message
Defect Number
Enhancement Number
Cause
Resolution
In OpenEdge we include the utility OpenSSL,exe (renamed as sslc.exe in OpenEdge) that can be used to test connectivity when using SSL. 

To test a server we can use

           sslc s_client -debug -host <hostname> -port 443 -CApath <certificate directory> -showcerts 

or
sslc s_client -connect <hostname:port> -CApath <certificate directory>  -debug -msg -state -ssl3

Examples:

           sslc s_client -debug -host SomeURL.com -port 443 -CApath %DLC%\certs -showcerts > sslcon.log

sslc s_client -connect localhost:3055 -CApath $DLC/certs -debug -msg -state -ssl3 > sslcon.log

To test a client we can use
 
sslc s_server  -accept <Listening on port>  -nocert -ssl3
 
or
   
sslc s_server  -accept 443 -cert <certificate file>.pem

Example:

sslc s_server  -accept 3055 -nocert -ssl3

 
Workaround
Notes
References to Other Documentation:

OpenSSL web page:  https://www.openssl.org/
Keyword Phrase
Last Modified Date3/31/2023 2:17 AM

Powered by