Hello everybody,

I have a situation when I want to create one xml file that includes multiple
other xml files to make it more organized and easier to manage.
Let's say, I have several families. I could write something like this:
<families>
<family name="Brown">
<family-member name="John">
<age>50</age>
<height>6'</height>
</family-member>
<family-member name="Mary">
<age>50</age>
<height>5'5"</height>
</family-member>
</family>
</families>

Now, what I want to do is to put a <family-member> into its own xml file and
then include all family member files to one main xml file. I found out that
xinclude could do that trick, but it looks like CFMX does not support it yet.
Does anybody know if there is any way around?

Thanks,

Max.