[EMAIL PROTECTED] wrote: > > I apologise if i've missed this in the docs, but once I have parsed my > XML doc into a "Document", is there any way thay I can turn it back into > XML ( say after adding / changing some nodes )... > > I'm looking for a Document.toString() or similar....
If you're using java, check out the serializer classes. If you're using C++, check the DOMPrint example. In C++, there's not yet a standard way to serialise a DOM tree, but it's not hard to knock up your own version or crib the DOMPrint code. Mike. -- Mike Mason, Software Engineer XML Script Development Team Office: 44-1865-203192 http://www.xmlscript.org/ Mobile: 44-7050-288923
