I am trying to include some xml files in an other xml file. To do so, I used :
<example xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<types xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xi="http://www.w3.org/2001/XInclude">
<xi:include href="file1.xml" parse="xml" />
<xi:include href="file2.xml" parse="xml" />
</types>
</example>
But i got this error : Unexpected attribute 'xmlns:xi'
I don't understand why...
Thanks in advance !
( I am using Node js and trying to connect to DDS By the way )