...
Copy the keystore file created above to the host where the Desktop Launcher will be run.
Copy the certificate file created above to Platform Container.
Import the certificate to the platform.
Code Block $ keytool -keystore <path_to_platform_keystore-file> -import -file <certificate filename> -alias <alias>
For example, this command import certificate to Platform keystore.
Code Block $ keytool -keystore $MZ_HOME/keys/keystore.p12 -import -file clientcert.cer -alias clientcert
If you view the keystore, you should see the entry of alias clientcert
which is the Client desktop keystore (trustedCertEntry).
...