Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Added reserved characters in XML and steps to start and stop Appserver

...

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

...

To solve the issue, you need to hide replace the reserved characters such as > or< or change the password:in XML with their correspondent entities or update the password so it doesn't contain any of the reserved characters (listed below in the table) .

CharacterEntity

&

&amp;

<

&lt;

>

&gt;

"

&quot;

'

&apos;

  1. Stop AppServer.
  2. Open the AppServerX.xml Open the file and navigate to the line mentioned in the error message.
  3. Copy the value with the inappropriate symbols and put it to the string conversion resource.
  4. Replace reserved characters that cause the crash of XML with their appropriate entities. 
  5. Save changes in the AppServerX.xml file and start AppServer to apply changes. Use the output for AppServerX.xml file.

Examples

Incorrect syntax example (using < in the field):

Code Block
languagexml
themeEmacs
<SSLCertificatePassword>1<rfgcyJ</SSLCertificatePassword>

Correct syntax example (replacing < with its corresponding entity &lt;) :

Code Block
languagexml
themeEmacs
<SSLCertificatePassword>1&lt;rfgcyJ</SSLCertificatePassword>

...