[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Microsoft's XMLReader
- From: Andrés Aguiar <aaguiar@Artech.com.uy>
- To: "'xml-dev@lists.xml.org'" <xml-dev@lists.xml.org>
- Date: Tue, 06 Feb 2001 23:54:48 -0300
I need to have a Java implementation of a Microsoft XMLReader style API for
parsing XML.
I'm aware of the SAX Navigator
(http://www.geocities.com/takuki_kamiya/pub/saxnavi.html), but this
implementation uses a new thread to queue the SAX events, and I can't afford
to have a new thread to parse the XML file (this will run in a heavy loaded
server).
Does anyone know of something like this?
Can this be built using any propietary parser API (org.apache.xerces.*,
org.apache.crimson.*, etc)? As far as I know, all this implementations are
built on top of SAX, and the only way I imagine to implement this using SAX
is the 'new thread' one...
Thanks, regards.