Hi All,
I have also this error, after a lot investigation, I found why.
I use Tomcat 3.2.2 as servlet container and his classpath is setting with an
old SAXParser (parser.jar).
So I set statically the classpath in order to use xalan-2.0.1 and
xerces_1_3_1.jar first like that
echo Setting your CLASSPATH statically.
if exist "%TOMCAT_HOME%\lib\xalan-2.0.1.jar" set
CP=%CP%;%TOMCAT_HOME%\lib\xalan-2.0.1.jar
if exist "%TOMCAT_HOME%\lib\xerces_1_3_1.jar" set
CP=%CP%;%TOMCAT_HOME%\lib\xerces_1_3_1.jar
if exist "%TOMCAT_HOME%\lib\ant.jar" set CP=%CP%;%TOMCAT_HOME%\lib\ant.jar
if exist "%TOMCAT_HOME%\lib\jasper.jar" set
CP=%CP%;%TOMCAT_HOME%\lib\jasper.jar
if exist "%TOMCAT_HOME%\lib\jaxp.jar" set CP=%CP%;%TOMCAT_HOME%\lib\jaxp.jar
if exist "%TOMCAT_HOME%\lib\parser.jar" set
CP=%CP%;%TOMCAT_HOME%\lib\parser.jar
if exist "%TOMCAT_HOME%\lib\servlet.jar" set
CP=%CP%;%TOMCAT_HOME%\lib\servlet.jar
if exist "%TOMCAT_HOME%\lib\webserver.jar" set
CP=%CP%;%TOMCAT_HOME%\lib\webserver.jar
Now it works fine.
Hicham
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]