[
Lists Home |
Date Index |
Thread Index
]
Karen Tegtmeyer wrote:
> I am using java jdk1.3.1 with Tomcat4.1
>
> TransformerFactory tf =
> TransformerFactory.newInstance();
>
> gives me an exception of
> java.lang.ClassCastException:
> org.apache.xerces.jaxp.SAXParserFactoryImpl
>
> I have tried everything I can think of.
>
> These are the things I have tried:
> 1. I got the "jaxp-api.jar" file from the java web
> services developer pack 3.1 and placed it here:
> c:\tomcat4.1\common\lib
>
> 2. I placed a file called "jaxp.properties" here:
> c:\jdk1.3.1\jre\lib
> with this one line:
> javax.xml.transform.TransformerFactory=org.apache.xerces.jaxp.SAXParserFactoryImpl
I think you need Xalan as the XSLT engine and set that property to
org.apache.xalan.processor.TransformerFactoryImpl
|