I receive the following error �500 No action instance for path
/saveApplication could be created�

If I call application.jsp the page shows up fine but when I submit the form
I receive the �No action instance error�

In my struts-config.xml I have the following mapping

<action-mappings>
<action path="/saveApplication"

type="com.team2media.controller.SaveApplicatonAction"
                        name="applicationForm"
                        scope="request"
            validate="true"
                        input="/application.jsp" >
                        <forward name="continue"  path="/application.jsp"/>
</action>

<!�This mapping works fine -->
<action path="/contact"
            type="com.team2media.controller.ContactAction"
            name="contactForm"
            scope="request"
            validate="true"
            input="/contact.jsp">
            <forward name="cancel" path="/contact.jsp"/>
            <forward name="continue" path="/contact.jsp"/>
</action>

</action-mappings>


Reply via email to