So far that looks correct to me.

Some further guesses:
- the jar file is not readable for the user that runs tomcat
- the jar file is corrupt

Verify if the user that runs tomcat can read the jar file:

login as the user that runs tomcat and do
/usr/lib/j2sdk1.3/bin/jar -tvf /usr/lib/j2sdk1.3/jre/lib/rt.jar
java/beans


If that works, try to compile a small test case that uses 
a class in the bean package:

Test.java

import java.bean.Bean;


public class Test { 
  public Test() {
    System.out.println("Test: " + Bean.isDesignTime());
  }
}


> -----Ursprüngliche Nachricht-----
> Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> Gesendet: Freitag, 22. März 2002 10:32
> An: Tomcat Users List
> Betreff: Re: AW: Debian Woody / Tomcat / Example JSPs
<snip/>
> With 'env | grep CLASSPATH' I get no result (done as root and 
> tomcat-user)
<snip/>
> Then I put an additional 'echo' statement to the 
> startupscript to get the
> CLASSPATH. The echo says on startup of tomcat:
> 
> classpath set to: 
> /usr/lib/j2sdk1.3/jre/lib/rt.jar:/usr/lib/j2sdk1.3/lib/tools.j
> ar:/usr/share/tomcat/lib/tomcat.jar
<snip/>

--
To unsubscribe:   <mailto:[EMAIL PROTECTED]>
For additional commands: <mailto:[EMAIL PROTECTED]>
Troubles with the list: <mailto:[EMAIL PROTECTED]>

Reply via email to