Petar,
I see no problem with streaming
XML data into the Xerces SAX / DOM
parser. For my purposes, I implemented a new BinInputStream along with
a new InputSource. The InputSource creates an instance of this BinInputStream
for the parser, and the BinInputStream provides the parser with XML data
a
I read numerous posts on the issue of streaming XML into a SAX parser and on
progressive XML parsing.
Progressive parsing works great but it sill requires all of the XML upfront (be
it in a file be it in a memory buffer).
Streaming of XML into a SAX parser doesn't seem to be addressed by Xerces o