Hi All,

I am currently using the Struts framework to develop a wizard application.
When using the Struts framework I notice that form data does not get re-displayed after
issuing ActionErrors. Is there any reason for this?

I use the following code structure for developing the wizard:

OrganisationNameSearch.jsp
OrganisationNameSearchActionForm.java
OrganistaionNameSearchAction.java

and here are the important configuration settings I use to execute code:

---OrganisationNameSearch.jsp---
<html:form  action="/company/OrganisationNameSearch"
            name="company.OrganisationNameSearch"
            
type="net.natdata.application.itf.insolvency.company.OrganisationNameSearchActionForm">


---Struts Configuration---
<struts-config>
    <form-beans>
        <form-bean name="company.OrganisationNameSearchActionForm"
                   
type="net.natdata.application.itf.insolvency.company.OrganisationNameSearchActionForm" 
/>
    </form-beans>
    <action-mappings>
        <action path="/company/OrganisationNameSearch"
                
type="net.natdata.application.itf.insolvency.company.OrganisationNameSearchAction"
                name="company.OrganisationNameSearchActionForm"
                validate="true"
                scope="request"
                input="/company/OrganisationNameSearch.jsp"
                parameter="method">
                <forward name="next"    path="/company/OrganisationBrowse.jsp" 
redirect="false" />
                <forward name="failure" path="/company/OrganisationNameSearch.jsp" 
redirect="false" />
        </action>
    </action-mappings>
<struts-config>


Can someone please give me an indication as to why this is happening?

Cheers
Rodney

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

Reply via email to