Re: Generating XML from a DOM

2000-02-08 Thread Ralf Pfeiffer
David Blevins wrote: > Can Xerces-J generate XML from a DOM? > > thanks, > Dave Check out the dom.DOMWriter in samples directory. --

Re: Generating XML from a DOM

2000-02-08 Thread RHS Linux User
There's a good sample of generating XML from a DOM Tree in a file under the "samples" directory called "DOMPrint". This is in the C/C++ distribution, but it should be easily translatable into Java if it not in the java distribution. HTH --Harmon On Tue, 8 Feb 2000, Da

Re: Generating XML from a DOM

2000-02-08 Thread Assaf Arkin
ser = new org.apache.xml.serializer.XMLSerializer( OutputStream ); ser.serialize( doc ); arkin David Blevins wrote: > > Can Xerces-J generate XML from a DOM? > > thanks, > Dave -- -- Assaf Arkin

Generating XML from a DOM

2000-02-08 Thread David Blevins
Can Xerces-J generate XML from a DOM? thanks, Dave