M
Michael Jacobs
Guest
OpenEdge cannot use a .p12 (pkcs12) formatted key/certificate file. It SSL/TLS enabled servers require a single .pem file, containing both the private key and its certificate, in the DLC/keys/ directory. (the one exception is the PAS for OE servers in 11.5+, just to be clear) You can try the following manual (unix) steps to extract and format the key & certificate from the .p12 file. (Windows will work the same way with corrected file paths and DLC variable name) See if this works for you. Note: you will be prompted for the passwords to the .p12 file and for encrypting the .pem private key. $DLC/bin/sslc pkcs12 -in source-keystore.p12 -nocerts -out server-key.pem $DLC/bin/sslc pkcs12 -in source-keystore.p12 -clcerts -nokeys -out server-cert.pem cat server-key.pem server-cert.pem > $DLC/keys/server.perm Good luck!
Continue reading...
Continue reading...