Raphael (et all)

For Tomcat 3.2 (Final) and current CVS tree for JetSpeed, are you suggesting that I do 
the following..

If running as a NT Service.. within %tomcat_home%\conf\wrapper.properties I replace
wrapper.class_path=$(wrapper.tomcat_home)\lib\jaxp.jar
wrapper.class_path=$(wrapper.tomcat_home)\lib\parser.jar

with
wrapper.class_path=D:\jakarta-jetspeed\lib\xalan-2.0.1.jar
wrapper.class_path=D:\jakarta-jetspeed\lib\xerces_1_3_1.jar

If running from the command line , within the %tomcat_home%\bin\tomcat.bat I replace
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

with the following in the static classpath section..
set CP=%CP%;D:\jakarta-jetspeed\lib\xalan-2.0.1.jar
set CP=%CP%;D:\jakarta-jetspeed\lib\xerces_1_3_1.jar

and finally... remove the following from %tomcat_home%\lib
jaxp.jar
parser.jar

and copy
%jetspeed_home%\lib\xalan-2.0.1.jar
%jetspeed_home%\lib\xerces_1_3_1.jar

to %tomcat_home%\lib

because %tomcat_home%\bin\tomcat.bat also has a ":dynClasspath" tag! ;)

O.K.. now it works!


mlc


-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of
[EMAIL PROTECTED]
Sent: Thursday, May 10, 2001 2:38 PM
To: [EMAIL PROTECTED]
Subject: Re: Error on start screen


Stefan Wagner wrote:
>
> Hi!
>
> With the latest CVS from Jetspeed I got the following error on the start
> screen:
>
> Is it  a general error or did I something wrong?
>
> Error Generating Jetspeed Screen:
>
> java.lang.NoSuchMethodError: org.w3c.dom.Node: method
> getLocalName()Ljava/lang/String; not found
>
> java.lang.NoSuchMethodError: org.w3c.dom.Node: method
> getLocalName()Ljava/lang/String; not found at at

These kind of errors are always caused by the same thing: conflicting parsers
bundled with different version of the SAX/DOM API.
Best way to solve this is to use one and only one parser level thoughout your
setup. (for example: always use xerces 1.3.1+ and replace every other parser
found by this one).

I think these conflicts are supposed to be solved with Tomcat 3.3.

--
Rapha?l Luta - [EMAIL PROTECTED]

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to