Found my error! I seem to have problems with spelling ("form-properly"? hehe)
Sorry for the spam :) Jin Lee -----Original Message----- From: Jin Lee [mailto:[EMAIL PROTECTED] Sent: Friday, April 09, 2004 11:16 AM To: [EMAIL PROTECTED] Subject: no getter method found for property - using DynaActionForms Hey all, I have a very simple form and a DynaActionForm associated with it. When I try to load the page I get the following error: javax.servlet.ServletException: No getter method for property SelectCourseID of bean org.apache.struts.taglib.html.BEAN org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextI mpl.java:867) org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImp l.java:800) org.apache.jsp.pages.course.welcome_jsp._jspService(welcome_jsp.java:154) . . . Here is my DynaActionForm: <form-bean name="CourseWorksheetForm" type="org.apache.struts.action.DynaActionForm"> <form-propery name="SelectCourseID" type="java.lang.Boolean" initial="false"/> <form-propery name="SelectSubjectCode" type="java.lang.Boolean" initial="false"/> <form-propery name="SelectCourseNumber" type="java.lang.Boolean" initial="false"/> <form-propery name="SelectCourseTitle" type="java.lang.Boolean" initial="false"/> <form-propery name="SelectDepartmentCode" type="java.lang.Boolean" initial="false"/> <form-propery name="SelectTerm" type="java.lang.Boolean" initial="false"/> <form-propery name="SubjectCode" type="java.lang.String"/> <form-propery name="CourseNumber" type="java.lang.String"/> <form-propery name="CourseTitle" type="java.lang.String"/> <form-propery name="DepartmentCode" type="java.lang.String"/> <form-propery name="Term" type="java.lang.String"/> </form-bean> Here is my action mapping: <action path="/course/CourseWorksheet" parameter="method" scope="request" name="CourseWorksheetForm" validate="false" type="edu.unex.exquery.course.CourseWorksheetAction"> <forward name="success" path="/course/CourseReport" redirect="true"/> <forward name="failure" path="/course/CourseWorksheet" redirect="true"/> </action> Note: I have a separate struts config file for just my form beans and I reference both config files in my web.xml (comma delimited). Any help? Thanks, Jin Lee (newbie struts developer - first post) --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]