This page was last edited on July 17, 2020, at 15:52.
Comments or questions about this documentation? Contact us for support!
Purpose: Set up clients of UCS to use TLS.
Procedures differ according to whether the client is integrated into the Genesys system.
To connect the client in a secured mode, execute the "Configuring a secure client connection" procedure in the "Genesys TLS Configuration" chapter of the Genesys Security Deployment Guide.
Applications that are not integrated into the Genesys system must verify the public key. One way to do this is to import the public key using keytool, as in the following example for a Java client:
keytool -export -v -alias hostname.example.com -file certificate.cer -keystore certificate.jks -storepass theKeystorePassword
keytool -import -alias hostname.example.com -file certificate.cer -keystore .keystore -storepass anotherPassword
java -Djavax.net.ssl.trustStore="<CERTIFICATE_DIRECTORY>\<CERTIFICATE_FILE>" <application_name>