I am developing web application using 3tier architectutre, I have
Beans corresponding to each JSP page, like sendmail.jsp have
SendMailBean.java, the problem is that my bean is not getting
populated, i have used <jsp:useBean id="bean" class="PBMailBean"
scope="session"/>
<jsp:setProperty name="bean" property="*"/>
on my sendmail.jsp page and wants my bean to be populated by the data
user enter in form, my bean attributes matches exactly as fields on
form, but the bean is not getting populated(setters methods are not
being callled), I need this bean to be passed to my BusinessObjects,
which is getting null in all beans attributes.