Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Minor fix.

...

Info
iconfalse

As it was already mentioned, there are two options how to configure SSL connection using FILE or exporting from STOREThese otpions are defined in the SSLCertificateSource parameter. Depending on your preferences, you need to select one of the options. The default value is STORE.

Code Block
languagexml
themeEmacs
<!-- The source of an SSL certificate. Possible values: FILE, STORE. The default value is STORE. -->
<SSLCertificateSource>STORE</SSLCertificateSource>

Let’s review these two options and the steps required to configure them.

Option A. Configuring SSL connection using FILE.

1. Change SSLCertificateSource value from STORE to FILE:

Code Block
languagexml
themeEmacs
<SSLCertificateSource>FILE</SSLCertificateSource>

2. Specify the path to  *.pfx file containing the certificate and corresponding private key, for example, C:/Program Files/WebSpellChecker/AppServer/certificate.pfx in the tag below:

Code Block
languagexml
themeEmacs
<SSLCertificateFile></SSLCertificateFile>

3. If your SSL certificate is password-protected, type the certificate password in the SSLCertificatePassword tag.:

Code Block
languagexml
themeEmacs
<SSLCertificatePassword>your_certificate_password</SSLCertificatePassword>

Option B. Configuring SSL connection by exporting SSL certificate from Windows Certificate Store.

Specify SSLCertificateStoreSettings parameters which is the group of parameters required to use SSL certificate from STORE, namely:

  • SSLCertificateCommonName which is a server name protected by the SSL certificate fully qualified HostName; a string value, for example, cloud.kp.org;
  • SSLCertificateUseMachineStore which is an option specifying if the machine store certificate is used.

...