I just started to read the conversation so if i tell you something you tried before sorry. But the error is normaly that you defined no getter method for the property dob in your form Bean class. e.g public class MyForm extends ActionForm{ private String dob; public String getDob(){return dob;}
} so if you implement this it should work -----Ursprüngliche Nachricht----- Von: Tim Sawyer [mailto:[EMAIL PROTECTED]] Gesendet: Dienstag, 26. Februar 2002 11:50 An: [EMAIL PROTECTED] Cc: Tim Sawyer; [EMAIL PROTECTED] Betreff: Re: Form Bean problem Nope, same error. It seems to be in the html library somewhere. javax.servlet.jsp.JspException: No getter method for property dob of bean org.apache.struts.taglib.html.BEAN at org.apache.struts.util.RequestUtils.lookup(RequestUtils.java:517) at org.apache.struts.taglib.html.BaseFieldTag.doStartTag(BaseFieldTag.java:188) at /ExtraCustomerDetails.jsp._jspService(/ExtraCustomerDetails.jsp.java:64) (JSP page line 16) at com.orionserver[Orion/1.5.2 (build 10460)].http.OrionHttpJspPage.service(Unknown Source) at com.evermind[Orion/1.5.2 (build 10460)]._ah._rad(Unknown Source) Is this something obvious I've done wrong? Tim. -----Original Message----- From: Sarah Farrell [mailto:[EMAIL PROTECTED]] Sent: Monday, February 25, 2002 9:54 PM To: Struts Users Mailing List Subject: Re: Form Bean problem The error sounds like it is referring to the taglib struts-bean.tld, whether or not it is a legitimate error, I'm not sure. Try taking out the line <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %> >from your jsp and change the button tags back to regular HTML where <html:submit> <bean:message key="button.submit"/> </html:submit> would become <input type="submit" value="Submit"> and <html:reset> <bean:message key="button.reset"/> </html:reset> would become <input type="reset" value="Reset"> And then tell us if you get the same error message, or a different one. ?? -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>