[SoapRMI] Re: Replace SAXParser with XPP parser
Aleksander Slominski
aslom_at_cs.indiana.edu
Tue, 23 Jul 2002 12:03:44 -0400
Rory Sandoval wrote:
> a... newbie questions.
>
> 1.- I was wondering how to replace the in the JAXP the
> SAXParser with the XPP parser.
please consider using XMLPULL API thar is similar to SAX API and
allows to use different implementations without need to changwe code,
see: http://www.xmlpull.org
> 2.- How can I use the XPP parser to replace Xalan to
> make faster XSLT transformations?
>
> OR how can I make Xalan to use XPP instead of other
> parser?.
you can use SAX2 driver for XMLPULL as input to Xalan.
however driver is not yet very well tested and also current
XMLPULL API implementations have some limitations
(we work on fixing them).
i would just give it a try (driver is in CVS http://www.xmlpull.org/v1/doc/faq.html#CVS)
and see what happens.
thanks,
alek