sending javabean from JSP to servlet
Hello
I'm using a javabean inside a JSP, by the tag :
<jsp:useBean id="myBean" scope="session"........>
From that JSP i'm calling a servlet.
The problem is that i can't access this bean from the servlet.
I tried call it with session.getAttribute("myBean"), but got a null.
How can I access that bean within the servlet ?

