Hi,
I imported a mid-sized project into myeclipse to continue development, but got stuck with some really strange JSP validation issues:
all JSP files are reported invalid due to the following two errors (one in the first quarter of the file, the other in the last quarter)
“The end Tag “&&;lt;html:html” is unbalanced” and
“Unterminated &&;lt;html:html tag”.
The first one seems to point to random lines (even before the <html:html locale=”true”> tag!) in the first quarter of the file, the second seems to point to a random line in the last quarter of the file (but BEFORE the </html:html> tag!)
I tried to figure out what causes this behaviour, and found that the JSP validation failes if information from included jsp fragment files are required for validation. In my case, I have two fragment files I include in all JSP files of this project (top.jspf and bottom.jspf), where top.jspf includes the <html:html …> tag, page header, meta data and stuff. bottom.jspf includes the body and header closing tags.
If I copy the contents of this two files into the main JSP file, it will validate.
Thanks,
Chris