It is a validation error occurs in xml file.
In my xml file, I got this error at below statement.
<!ENTITY servletName=”%servletName%”>
And the actual exception I got was,
The parameter entity reference ”%servletName%” must end with the ‘;’ delimiter.
To resolve this issue, we need to replace the symbols “%” with the html codes.
The statement was replaced with the below.
<!ENTITY servletName=”%servletName%”>
Visit articles page of the website learningmela.com for more details.