i am attempting to structure create/modify/update workflow within my
application and have created the following action.

<action
        path="/manage"
        parameter="action"
        type="com.christianity.account.struts.action.AccountManagerAction"
        name="accountValidatorForm"
        scope="request"
        input="/account.jsp">
                <forward name="modify"
                        path="/account.jsp"
                        redirect="false"/>
                <forward name="update"                  path="/account_update.jsp"
                        redirect="false"/>
</action>

my first question is as follows:
it appears that if i call manage.do?action=modify that the modify method
in AccountManagerAction never gets called.  is this the expected
behavior when using validation?  i am attempting to load the account
within the modify method and set the accountValidatorForm values which
in turn can be loaded within the account.jsp page, but if the method is
not called then this is not possible.

my second question is:
if my action is setup incorrectly does anyone have a suggestion on how i
could restructure it.

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

Reply via email to