Hi all,
        I am trying to get things working with DynaActionform.
I have defined my dynaAction form in my struts-config file as follows..

<form-bean name="productAliasForm"
type="org.apache.struts.validator.DynaValidatorForm">
        <form-property name="aliasRef" type="java.lang.String"/>
        <form-property name="contactRef" type="java.lang.String"/>
        <form-property name="productRef" type="java.lang.String"/>
</form-bean>

mapped to following class

<action path="/productContactAliasSetUp" 
        
type="com.waersystems.ngenweb.product.ProductSetUpAction" 
                        name="productAliasForm"
                        validate="false" scope="request">
                        <forward name="blank"
path="/productMaintenance.jsp">
                        </forward>
                </action>


now, when the ProductSetupAction forward the request  to
productMaintenance.jsp,
I got following JSP compilation error:

ServletException in:/AliasMaintenance.jsp] No getter method for property
aliasRef of bean org.apache.struts.taglib.html.BEAN'


At a glance, it seems that the page does not recognize the
DynaActionForm, since it is expecting to have a getAliasRef, while the
DynaActionForm has only get and set..

Any additional steps that I have to configure still in JSP to get things
working?

Thanx and regards
        marco





---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to