D Kimmel schrieb:
Currently, I have been using the xmlCreatePushParserCtxt along with the xmlParseChunk for some applications that have to read from an XML stream. Is there a way to ignore (or not parse) subelements and just have them returned as a chunk of data? I was hoping to avoid using CDATA blocks, but basically that's the functionality I am looking for.
XML doesn't need CDATA, but it may be a convenience. If the reason for avoiding to parse the data is to prevent parse errors, than what you have isn't XML. Using the push parser, you should be able to abort parsing once you've collected the data you're interested in. Only learnt about it the day before yesterday. http://aspn.activestate.com/ASPN/Mail/Message/perl-xml/3707312 The same thing is possible using SAX (which the subject of your mail refers to) at the price of throwing and catching an exception. http://aspn.activestate.com/ASPN/Mail/Message/perl-xml/3707238 I hope this helps. Michael Ludwig _______________________________________________ xml mailing list, project page http://xmlsoft.org/ [email protected] http://mail.gnome.org/mailman/listinfo/xml
