Alex Masycheff wrote:
>  
> I am sending the zip that contains my files. The book file which
> contains XInclude, indoor_solution_proposal.xml, is stored in the
> Proposal folder. 
>  

> Frankly, this is a legacy DocBook file I once created in NotePad and just 
> opened in XXE. Is it the problem?

Finally yes, this was the cause of the problem.

indoor_solution_proposal.xml contains XIncludes looking like this:

    <xi:include href="..\Executive Summary\overview.xml"
                xmlns:xi="http://www.w3.org/2001/XInclude"; />

but attribute "href" must contain an URI and not a filename.

After changing all your hrefs to URIs looking like this (attachment sent
in a private email):

    <xi:include href="../Executive%20Summary/overview.xml"
                xmlns:xi="http://www.w3.org/2001/XInclude"; />

XXE no longer reports any XInclude errors.  However it still contains
severe structural errors (e.g. empty listitems in the included modules)
and XXE now reports validation errors (red icon).

>From now, please a native XML editor (XXE or other), and not a plain
text editor, to create your XML documents.



Reply via email to