I have two methods in action extending actionsupport in struts2.
WHen I login it should execute only the execute method.BUT
it also fires update another method which I want to call some other time.

THis is my struts.xml
**********
<action name="login"  class="login">
       <result name="input">login.jsp</result>
       <result name="error">login.jsp</result>
       <result>/pages/main.jsp</result>
</action>
 <action name="login_*" class="login" method="update">
            <result name="success">/pages/dashboard.jsp</result>
        </action>
***************


Piero Sartini-3 wrote:
> 
> Am Montag, 22. Oktober 2007 13:23:38 schrieb zul;jami:
>> Still I am getting the error,
>> my execute also fires update on load.
>> There is no img tag with empty src attribute
> 
> execute() is triggered when the action is called, not only when you submit 
> your data.
> 
>       Piero
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Why-does-update-action-fire-on-load-tf4670323.html#a13402904
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