Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment:

Update formatting

Make sure that the Prepare interceptor comes first before validation interceptor in the Sometimes the order of the Interceptors makes a difference. In the case of the prepare Interceptor, ensure that it comes before validation on the interceptor-stack.

Code Block
xml
xml
  <interceptor-stack name="myInterceptorStack">
        ...
     <interceptor-ref name="prepare" />
        ...
     <interceptor-ref name="validation" />
        ...
  </interceptor-stack>