Re: [xml-dev] Parsing Performance

From
Dennis Sosnoski <>
To
Martin Soukup <>
Date
2003-02-24T18:56:04Z
ID
<>
Thread
Re: [xml-dev] Parsing Performance
Martin Soukup wrote:

>Live data feeds. Yes, I think you might be right, but what option do I
>have other than SAX?
>
Your best non-SAX option is probably XMLPull (http://www.xmlpull.org). 
The two packaged implementations do not support DTDs, though if you need 
DTD support there's also a link for CVS code to an implementation based 
on Xerces. I haven't tried out the Xerces-based implementation, but use 
the XPP3 one all the time - it's as fast as the fastest SAX2 parsers, 
and for many applications the XMLPull API is much easier to work with 
than SAX.

  - Dennis