Did u put dot "." in your CLASSPATH ?

-----Original Message-----
From: Jack Li [mailto:[EMAIL PROTECTED]]
Sent: Thursday, March 22, 2001 6:09 PM
To: [EMAIL PROTECTED]
Subject: RE: Does JDK1.3 works with Tomcat?


I didn't use special methods. the java codes are very simple and listed
below:
------------------------------------
import java.io.Serializable;
public class Counter implements Serializable{
    int count = 0;

    public Counter(){}

    public int getCount(){
        count++;
        return this.count;
    }

    public void setCount(int count){
        this.count = count;
    }
}
-------------------

Here is the directory structure:

web -- homepages -- jack -- counter.jsp
web -- web-inf   -- classes -- counter.class

The error message is:
Class homepages.jack.Counter not found in type declaration.

Please help
Thanks,
Jack Li





-----Original Message-----
From: Ying Ho [mailto:[EMAIL PROTECTED]]
Sent: Thursday, March 22, 2001 11:03 AM
To: [EMAIL PROTECTED]
Subject: Re: Does JDK1.3 works with Tomcat?


JDK 1.3 does work with tomcat. Your bean must be using some specific jdk
1.1.*
methods that is not supported in jdk 1.3 (and most likely also jdk 1.2).

----- Original Message -----
From: "Jack Li" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, March 22, 2001 4:52 PM
Subject: Does JDK1.3 works with Tomcat?


> Hello,
> Does JDK1.3 works with tomcat. My beans do not work with JDK1.3. Error
> message says can't find the class. But all these beans works fine with
> JDK1.1.8. Any ideas?
>
> Thanks,
> Jack Li
>

Reply via email to