You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 7 Next »

Problem & Symptoms

Sometimes you may encounter the following situation after enabling SSL Connection with AppServer, it fails to operate properly and you can see the following message in the logs files of the /<WSC_Installation_Path>/WSC/AppServer/Logs directory:

Cannot parse ini file "...\AppServer\AppServerX.xml". Reason: XmlDomParser. Invalid token in line <00> column <00> error code 17

The error means that you use inappropriate symbols which are reserved characters such as, for example, > or < symbols in the SSL certificate password parameter in AppServerX.xml file. This file is located in <WebSpellChecker_Installation_Path>/AppServer/AppServerX.xml directory.

Solution

To solve the issue, you need to hide the reserved characters such as > or< or change the password:

  1. Open the file and navigate to the line mentioned in the error message.
  2. Copy the value with the inappropriate symbols and put it to the string conversion resource.
  3. Use the output for AppServerX.xml file.

Examples

Incorrect syntax example:

<SSLCertificatePassword>1<rfgcyJ</SSLCertificatePassword>

Correct syntax example:

<SSLCertificatePassword>1&lt;rfgcyJ</SSLCertificatePassword>
  • No labels