Websphere LIBERTY and ssl certificates
One answer
Can you elaborate more on what exactly is the problem?
In one of my small test environments with liberty (but not Jazz CLM), I added the following entries to the server.xml, and TLS is working fine...
<sslDefault sslRef="sslName"/> <ssl id="sslName" keyStoreRef="keyStoreName" clientAuthentication="false"/>You can find this documented in the IBM Knowledge Center.
<keyStore id="keyStoreName" location="/root/ssl/keyStoreFileName.p12" type="PKCS12" password="keyStorePassword"/>