Ich habe zwei XmlDokumente. Etwas wie:
<document1>
<inner />
</document1>
と
<document2>
<stuff/>
</document2>
Ich möchte document2 innerhalb des inneren Knotens von document1 platzieren, so dass ich am Ende ein einzelnes Dokument habe, das enthält:
<document1>
<inner>
<document2>
<stuff/>
</document2>
</inner>
</document1>