RE: loadXML() and get_xml() equivalents for the DOM_DOCUMENT

2002-05-15 Thread Evert Haasdijk
> To: '[EMAIL PROTECTED]' > Subject: RE: loadXML() and get_xml() equivalents for the DOM_DOCUMENT > > > See the DOMPrint example for an example of serializing a DOM > hierarchy. If I > recall correctly, you'll need to adapt the example to serialize > to a string

RE: loadXML() and get_xml() equivalents for the DOM_DOCUMENT

2002-05-14 Thread Jesse Pelton
dey [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 14, 2002 1:25 PM To: [EMAIL PROTECTED] Subject: Re: loadXML() and get_xml() equivalents for the DOM_DOCUMENT The parser works in terms of 'input sources'. Pass in a memory buffer input source instead of a file input source. When you pass in a

Re: loadXML() and get_xml() equivalents for the DOM_DOCUMENT

2002-05-14 Thread Dean Roddey
The parser works in terms of 'input sources'. Pass in a memory buffer input source instead of a file input source. When you pass in a quoted string, that's just a convenience that internally creates either a file or URL input source for you. Look at the MemParse example. -