Hi Jeong, Since you are trying to insert after the last child of the parent, is it not equivalent to appending to the parent. appendChild() always adds to the end of the list of children.
Regards, Sheen -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 19, 2002 11:11 AM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: How to insert element? THANKS, but i know how to append an element to a document but, i want to know how i can insert an element with in an existing xml document, say, i have a xml file i am reading it, and i want to insert an element, how can i do that, that is not given in that example. thanks --- Christopher Ebert <[EMAIL PROTECTED]> wrote: > > Hi, > > Try looking at sample > ~/samples/dom/DOMGenerate.java. It should > give you everything you need. > > Cheers, > > Chris > > > -----Original Message----- > From: Jeong Ahn Lee [mailto:[EMAIL PROTECTED] > Sent: Tuesday, June 18, 2002 2:40 AM > To: [EMAIL PROTECTED] > Subject: How to insert element? > > > Hi all, i have an xml document like below > > <SOAP-ENV:Envelope> > <SOAP-ENV:Header> > <ABC>aa</ABC> > <BBC>bb</BBC> > <CNN>bb</CNN> > </SOAP-ENV:Header> > <SOAP-ENV:Body>this is body</SOAP-ENV:Body> > </SOAP-ENV:Envelope> > > in that document, how can i insert an element( say > <FOX> ) > after <CNN> element, with in the <SOAP-ENV:Header> > element. > > Thanks and Regards > Jeong Ahn > > __________________________________________________ > Do You Yahoo!? > Yahoo! - Official partner of 2002 FIFA World Cup > http://fifaworldcup.yahoo.com > > --------------------------------------------------------------------- > To unsubscribe, e-mail: > [EMAIL PROTECTED] > For additional commands, e-mail: > [EMAIL PROTECTED] > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: > [EMAIL PROTECTED] > For additional commands, e-mail: > [EMAIL PROTECTED] > __________________________________________________ Do You Yahoo!? Yahoo! - Official partner of 2002 FIFA World Cup http://fifaworldcup.yahoo.com --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
