Michael Abbott wrote:
As an example for an included file:

  <AnElement>
    blah
  </AnElement>

  <AnotherElement>
    blah
  </AnotherElement>


If that's the full, exact contents if an included file, then the problem is that XML documents can only have 1 root node. Just wrap the entire contents in another tag.

<elements>
 <AnElement>blah</AnElement>
 <AnotherElement>blah</AnotherElement>
 ...
</elements>

That should stop the technical problem, but it'd definitely be good to look into using real XIncludes that Daniel mentioned.

Jason

_______________________________________________
xml mailing list, project page  http://xmlsoft.org/
[email protected]
http://mail.gnome.org/mailman/listinfo/xml

Reply via email to