> In the servlet I create an istance of "UserBean" and I pass it to a JSP
> whit this istruction:
> request.setAttribute("userBean",userBean);
Are you using "new" to instantiate the bean? You should do something like:
UserBean ub = (UserBean) Beans.instantiate(getClass().getClassLoader(),
"com.yourpackage.UserBean");
> In the JSP I read the bean in this way:
> <jsp:useBean id="userBean" class="UserBean" scope="page"/>
try setting the scope to "request" not page.
Mike
===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
FAQs on JSP can be found at:
http://java.sun.com/products/jsp/faq.html
http://www.esperanto.org.nz/jsp/jspfaq.html