Hello, 
I have this problem that I cannot come to solve it
I have two actions: editFeature and saveFeature. When editFeature should
submit successfuly to saveFeature the latter performs and redirects
transparently to editFeature again.
When validation fails, I get back to editFeature without error messages
being shown above correspondant fields.
I read a previous thread talkin about the same problem and giving a
satisfying solution with the store interceptor.
Here is my struts actions:

 <action name="editFeature"
class="com.intelligile.lms.webapp.action.FeatureAction" method="edit">
                        <interceptor-ref name="defaultStack" />
                        <interceptor-ref name="store">
                                RETRIEVE
                        </interceptor-ref>
            <result>/WEB-INF/pages/featureForm.jsp</result>
            <result name="error">/WEB-INF/pages/featureList.jsp</result>
        </action>
        <action name="saveFeature"
class="com.intelligile.lms.webapp.action.FeatureAction" method="save">
                        <interceptor-ref name="defaultStack" />
                        <interceptor-ref name="store">
                                STORE
                        </interceptor-ref>
            <result name="success" type="redirect">features.html</result>
            <result name="input" type="redirect-action">
                                editFeature.html
                                true
                                ${feature.dkey}
                        </result>
        </action>

Please help me figure out where the problem exists.
Thank you for your support.
Best regards.
-- 
View this message in context: 
http://www.nabble.com/Message-Store-with-Redirect-Action-tp15999073p15999073.html
Sent from the Struts - User mailing list archive at Nabble.com.


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

Reply via email to