Как «вставить» содержимое из одного xml в другой?
Есть файл goal.xml:
<?xml version="1.0" standalone="no" ?>
<!DOCTYPE doc [
<!ENTITY otherFile SYSTEM "otherFile.xml">
]>
<doc>
<foo>
<bar>&otherFile;</bar>
</foo>
</doc>
other.xml:
otherFile.xml:
<baz>this is my content</baz>
В итоге должно получиться:
<?xml version="1.0" standalone="no" ?>
<doc>
<foo>
<bar><baz>this is my content</baz></bar>
</foo>
</doc>
Суть в том, чтобы вставить содержимое из одного xml в другой. Пример взят с http://stackoverflow.com/questions/5121052/can-we-import-xml-file-into-anothe...
Получаю нубские ошибки валидатора:
Element xxx must be declared
P.S. Первый раз возникла необходимость.