Hello.

In Struts Documentation i found that 
"Because of the nature of this interceptor, it must be the last interceptor
in the stack."

and in struts-default.xml i found 

<interceptor-stack name="executeAndWaitStack">
  <interceptor-ref name="execAndWait">
      <param name="excludeMethods">input,back,cancel</param>
   </interceptor-ref>
   <interceptor-ref name="defaultStack"/>
   <interceptor-ref name="execAndWait">
      <param name="excludeMethods">input,back,cancel</param>
   </interceptor-ref>
</interceptor-stack>

Why it appears twice?  Before all interceptors and after all interceptors.

In other parts of documentation  i see than i must use:    
<interceptor-ref name="defaultStack"/>
<interceptor-ref name="execAndWait"></interceptor-ref>

-  an execAndWait interceptor as last interceptor.

Why we need configured executeAndWaitStack?



-- 
View this message in context: 
http://www.nabble.com/ExecuteAndWait-interceptor-position--tf4624600.html#a13207107
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