Could this be a package issue as well (see Tomcat can't find my
classes)? Classes places in the /classes folder must be in nested folders
matching the package name. When you reference this class, you must use the
package name, for instance:
<jsp:useBean id="user" class="mypackage.userclasses.UserData" scope="session"/>
Eric
At 02:30 AM 5/24/2002, you wrote:
>I have the same problem of other, I read a some tutorial too and...
>public class UserData {
> String username;
> String email;
> int age;
>
> public void setUsername( String value )
> {...
>I put in UserData.java and compiled and put in the same directory
>\WEB-INF\classes, and when
> call
>I find this and compiled and put in the same directory \WEB-INF\classes, and
>when call
>SaveName.jsp
><jsp:useBean id="user" class="UserData" scope="session"/><jsp:setProperty
>name="user" property="*"/>
>receive this error:
>org.apache.jasper.JasperException: Unable to compile class for JSP
>
>An error occurred at line: 1 in the jsp file: /SaveName.jsp
>
>Generated servlet error:
>C:\Program Files\Apache Tomcat 4.0\work\localhost\_\SaveName$jsp.java:56:
>Class org.apache.jsp.UserData not found.
> UserData user = null;
> ^
>
>Why?
>
>
>--
>To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
>For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>