Problem using Tamino XSLT Server Extension

Hi, I am tring to use the Tamino XSLT Server Extension, but, when I try to run the example, tamino gives me this output:

xql:result

javax.xml.transform.TransformerConfigurationException: javax.xml.transform.TransformerException: org.xml.sax.SAXException: javax.xml.parsers.FactoryConfigurationError: Provider for javax.xml.parsers.SAXParserFactory cannot be found

<NASCAR_Drivers number=“24”>
Jeff Gordon
Hendrick Motorsports
<car_make>Chevy</car_make> …


I am using Xalan, and i have the file xalan.jar and all the other jars (jpax.jar, xt.jar, etc.) in my CLASSPATH.


Can anyone help me ???
I really need this working !!!

Thanks.

This message means that the system is having trouble trying to locate a SAX parser to use with Xalan. I’m not sure which SAX parser it is trying to load: it uses the same algorithm as when looking for a TransformerFactory - first look if the javax.xml.parsers.SAXParserFactory system property is set, then look in the META-INF of the JAR files, then look for the “platform default” parser (which I think is Crimson). I would expect that putting Xerces or Crimson on the classpath will solve the problem.

Michael Kay