Hi,
I am trying to instantiate a very simple bean on
Tomcat in a
JSP using the directive... <jsp:useBean id="sessionBean" scope="session" class="InfoBean" /> Everytime I try to run it, I get the following exception... javax.servlet.ServletException: Cannot create bean of class InfoBean Any idea why this is happening... The bean has a default constructor.
I have deployed my Beans package in the WEB-INF/classes directory for this program.
This is the useBean tag copied directly from my JSP: <jsp:useBean id="guest" class="Beans.Guest_Bean" scope="session"/>
FYI: This was working using tomcat 3.2.x
Any help is greatly appreciated.
Francois.