RE: Appending a Document to another

Subject: RE: Appending a Document to another
From: Bernhard Keil <Bernhard.Keil@xxxxxx>
Date: Mon, 7 Feb 2000 10:48:49 +0100
you can insert add root of doc B 
as child of the root of doc A.

-----Original Message-----
From: Anders K [mailto:cyberspock@xxxxxxxxx]
Sent: Montag, 7. Februar 2000 10:30
To: 'Xsl-List (E-mail)
Subject: Appending a Document to another


Hi,

I wonder if there is anybody who can tell
me a simple way to add one or more XML-docs
to another Document ?

i.e. 


Document A = new DocumentImpl();
... filling A up with stuff ...

// now I need to add some docs.
DOMParser dp = new DOMParser();
db.parse(somefile);
Document B = db.getDocument();

i tried
fc = A.getfirstchild();
fc.appendChild(B);
but got an exception wrong doc

or do I have to traverse the 
Document B adding the nodes
one by one? (which seems to be so much fun ;-)

TIA
</anders>


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread