Hi all,

I have an ActionForm, an Action class and a bean. In struts-config.xml I
have this:

<form-beans>
        [...]
        <form-bean name="connectionForm"
type="myapp.form.ConnectionForm" />
        [...]
</form-beans>

<action-mappings>
<action path="/editConnection"
                type="myapp.action.EditConnectionAction"
                name=""
                scope="request"
                validate="false">
                        <forward name="success"
path="/myapp/connection.jsp" />
        </action>
</action-mappings>

When I call /editConnection.do, I receive this error:
        No getter method available for property device for bean under
name org.apache.struts.taglib.html.BEAN

My ActionForm class has an attribute called 'device', and I have
implemented getDevice() and setDevice().

What is my error?

Thanks,
Mariano.



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

Reply via email to