NOW IT WORKS :)
For those with similar problems:
xalan.jar and xerces.jar are in the Tomcat-lib-folder and the relevant part
of the tomcat.bat is
rem ----- Set Up The Runtime
Classpath --------------------------------------
:setClasspath
set
CP=%TOMCAT_HOME%\lib\xalan.jar;%TOMCAT_HOME%\lib\xerces.jar;%TOMCAT_HOME%\cl
asses
Thank a lot to Randy!
-----Original Message-----
From: Randy Layman [mailto:[EMAIL PROTECTED]]
Sent: Dienstag, 26. Juni 2001 13:41
To: [EMAIL PROTECTED]
Subject: RE: Tomcat + FOP, missing method in org.w3c.dom.Node
Strange, it should have worked, oh well...
There will be a place in tomcat.bat file labeled :setClasspath.
You want to replace
:setClasspath
set CP=%TOMCAT_HOME%\classes
with
:setClasspath
set CP=xalan.jar;xerces.jar;%TOMCAT_HOME%\classes
Be sure to make the paths to xalan and xerces are correct.
Randy