Versions Compared

Key

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

...

If you haven't done so already during Java installation, make sure you have the following environment variables variable set related to Java. Modify the paths path according to your Java installation.

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 OpenJDK\openjdk-11-0.14.1_1

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

Image Added


Note

If you define these environment variables variable in another way (for example using the command line directly), notice the correct usage of quotation marks in Windows. Don't include the quotation marks into the value of the environment variable.

...

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_HOME%\lib\security\"
%JAVA_HOME%\bin\keytool.exe -importcert -trustcacerts -alias "<descriptive alias here>" -keystore cacerts -storepass changeit -file C:\path\to\certificate.cer

...