javax.servlet.ServletException:
hello I am a n00b to JSP. I am reading up an o'rielly book on jsp.
I have installed tomcat and the directory that came with the book. After reading a while i wanted to make a sample bean of mine and just try it out. But I cant get this to work for the life of me.
The beans .java and .class files are inside
C:\Program Files\Apache Software Foundation\Tomcat 5.5\webapps\ora\WEB-INF\classes\comu where comu is the package inside which resides the UserBean.java and UserBean.class
Following is the useBean segment from the jsp page
<jsp:useBean id="user" scope="page" class="comu.UserBean"/>
Everytime I try to access the jsp page i get the following exception
javax.servlet.ServletException: comu/UserBean (wrong name: UserBean)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:272)
javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
please guide me to the solution. I just want to get the sample bean working so I can play around with beans a bit more.
If you need any further information please let me know

