Congree Bulk Check Service is ready to use SSL. If service consumer requires SSL, it can be configured using the following steps.
...
After certificate is configured in IIS for HTTPS it should be added to Trusted Root Certificate Authorities on the client machines which will consume Congree Bulk Check Service.
To do this, open mmc.exe, select "Add or Remove Snap-ins", select "Certificates" for computer or personal account, click "Import" for Trusted Root Certificate Authorities and select certificate file (.cer) which is selected in IIS configuration.
Java environment
Open folder where currently used JRE version is installed (e.g. "C:\Program Files (x86)\Java\jre1.8.0_66\bin"). Run the following command line from JRE directory:
Codeblock | ||
---|---|---|
| ||
keytool -import -alias CongreeBulkCheckSSL -file <certificatePath> -keystore <keyStorePath> -storepass <keyStorePassword> |
...
- certificatePath is a path to .cer file generated on the first step;
- keyStorePath is a path to JRE certificate store (e.g. "c:\Program Files (x86)\Java\jre1.8.0_66\lib\security\cacerts");
- keyStorePassword is password for the certificate store. Note that by default "changeit" value is used for JRE certificate store.