Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

For example:
Set JAVA_HOME to C:\Program Files\Java\jdk1.8.0_265  Set JRE_HOME to C:\Program Files\Java\jdk1.8.0_265\jre

Environment variables can be set Control Panel → System and Security System Advanced system settings → Environment Variables → System Variables → New...

...

If you plan to use back channel connections from Ubisecure CustomerID over SSL encrypted connections, you will have to add each server's public key to the Server JRE's cacerts file: %JRE%JAVA_HOME%\lib\security\cacerts. Once you have downloaded the server's public key, you can add it to the key store with the following commands:

Code Block
languagetext
cd /D "%JRE%JAVA_HOME%\lib\security\"
%JAVA_HOME%\bin\keytool -importcert -trustcacerts -alias "<descriptive alias here>" -keystore cacerts -storepass changeit -file C:\path\to\certificate.cer

...