Cannot parse ini file "...\AppServer\AppServerX.xml". Reason: XmlDomParser. Invalid token [..]
Was this helpful?
Sometimes you may encounter the following situation after modifying the AppServer.xml file, 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 17The error means that you use inappropriate symbols which are reserved characters in XML such as, for example, > or < characters in the parameter value in AppServerX.xml file. This file is located in <WebSpellChecker_Installation_Path>/AppServer/AppServerX.xml directory.
To solve the issue, you need to replace the reserved characters in XML with their corresponding entities or update the parameter value so that it doesn't contain any of the reserved characters listed in the table below.
&
&
<
<
>
>
"
"
'
'
To do so:
Open the AppServerX.xml file and navigate to the line mentioned in the error message.
Replace reserved characters that cause the crash of XML with their appropriate entities.
Save changes in the AppServerX.xml file and Start AppServer to apply changes.
Incorrect syntax example (using < in the field):
Correct syntax example (replacing < with its corresponding entity <) :
Was this helpful?
Was this helpful?
<SSLCertificatePassword>1<rfgcyJ</SSLCertificatePassword><SSLCertificatePassword>1<rfgcyJ</SSLCertificatePassword>
