Hi all... I'm new to Xerces, developing on Visual Studio 2008. I have
experience with event-based parsers, but not with Xerces interfaces.
I want to feed XML strings to SAX in pieces, to progressively parse, but
progressive in what the parser gets, not in how the parser divides its
processing of the complete XML data. I would expect that is a useful thing,
especially in an event-based world where you don't know how large the data set
will be (the reasone for using events in the first place).
I looked at progressive parse -- it's not what I want.
Anyway, the question is, what's the general approach for doing this? Surely,
it isn't an unusual idea. I want to progressively feed buffered bits to the
reader so it can parse content until I say it's done. That saves me from
reading the whole input before parsing it.
Thanks for any info you can offer...
Cheers cud