Re: using DOM to create XML file

2002-04-04 Thread Rhys Black
--- "Yuri A. Vovchenko" <[EMAIL PROTECTED]> wrote: > Dear Xerces developers > I'm going to use your freeware XML-DOM library to > write the XML data of ours > application. But i don't see the way how your > library allows to serialize > created in memory DOM tree to a file. Please, could > you gi

RE: using DOM to create XML file

2002-04-03 Thread Evert Haasdijk
Yuri, There is no provision for that: it'll be introduced in DOM level 3. The standard answer is to 'look at teh DOMPrint sample and amend it to your needs' I've done just that and you can have the result: a class called DOMSerializer that allows you to stream an in-memory DOM tree to file. See a