Some people on the XSL list group have contributed these thoughts: 1. If if you are running in tomcat, and the xalan jar is in the classpath it may be being omitted as it may contain javax.* stuff.
I do include xerces 2.0.0 in my classpath. I want my servlet to do both validation using xerces as well as transformations using xalan. Can it not do both? 2. One possibility: unless your servlet implements the interface SingleThreadModel, the servlet engine (Tomcat, in this case) will invoke it on multiple threads. So you may have a multi-threaded situation without realizing it. What are your thoughts? /Roger
