I am running MyEclipse version: 3.8.1+QF20040825.
I’m using OJB within a project at the moment. It uses a number of XML files and “includes” one XML file within another. Specifically within repository.xml:
…
<!ENTITY user SYSTEM “repository_user.xml”>
…
<descriptor-repository version=”1.0″ isolation-level=”read-uncommitted”
proxy-prefetching-limit=”50″>
<!– include all used database connections –>
&database;
<!– include ojb internal mappings here –>
&internal;
<!– include user defined mappings here –>
&user;
…
The file repository_user.xml is a xml snippet in that it is included within repository.xml. When I run validation against repository.xml I get “The XML file is valid”, yet my repository_user.xml has a red cross against it and “The markup in the documnet following the root element must be well-formed” within the file (at some arbitrary point in the file) and in the Problems tab.
This is really annoying as my project now has a little (and erroneous) red cross against it (and if I edit/validate any of the other include XML files I get more red crosses).
Any thoughts/ideas about how to get around this issue?
Jonathan