Thanks again,
It is not working, sometimes I get NullPointerException
Plz show me how to use it.
Below is the modified fragment of struts.xml
Thanks for the support

<action name="editLicense"
class="com.intelligile.lms.webapp.action.LicenseAction" method="edit">
        <interceptor-ref name="defaultStack" />
        <interceptor-ref name="store">
                RETRIEVE
        </interceptor-ref>
        <result>/WEB-INF/pages/licenseForm.jsp</result>
        <result name="error">/WEB-INF/pages/licenseList.jsp</result>
</action>

<action name="saveLicense"
class="com.intelligile.lms.webapp.action.LicenseAction" method="save">
        <interceptor-ref name="defaultStack" />
        <interceptor-ref name="store">
                STORE
        </interceptor-ref>
        <result type="redirect">licenses.html</result>
        <result name="cancel" type="redirect">licenses.html</result>
        <result name="delete" type="redirect">licenses.html</result>
        <result name="input" type="redirect-action">
                editLicense.html
                true
                ${license.dkey}
        </result>
</action>
-- 
View this message in context: 
http://www.nabble.com/chaining-validation-errors-tp15299658p15306663.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