RE: WebLogic related question- javax.servlet.jsp.JspException: No get ter method for property...

2001-08-09 Thread rhayden
EMAIL PROTECTED]] Sent: Wednesday, August 08, 2001 5:11 PM To: [EMAIL PROTECTED] Subject: RE: Weblogic related question- javax.servlet.jsp.JspException: No get ter method for property... You're Bean class does not extend ActionForm.. [EMAIL

RE: Weblogic related question- javax.servlet.jsp.JspException: No get ter method for property...

2001-08-08 Thread Brian . Duchouquette
D] Subject: Re: Weblogic related question- javax.servlet.jsp.JspException: No get ter method for property... RequestUtils is using introspection on your form bean class to match the name you placed in your Your form bean should have: String getRequestDate() andvoid setR

RE: Weblogic related question- javax.servlet.jsp.JspException: No get ter method for property...

2001-08-08 Thread rhayden
t: Re: Weblogic related question- javax.servlet.jsp.JspException: No get ter method for property... RequestUtils is using introspection on your form bean class to match the name you placed in your Your form bean should have: String getRequestDate() andvoid setReques

Re: Weblogic related question- javax.servlet.jsp.JspException: No get ter method for property...

2001-08-08 Thread Brian . Duchouquette
RequestUtils is using introspection on your form bean class to match the name you placed in your Your form bean should have: String getRequestDate() andvoid setRequestDate(String) Brian