>         <filter-mapping>
>                 <filter-name>FiltroFilterChainProxy</filter-name>
>                 <url-pattern>*.do</url-pattern>
>         </filter-mapping>

You have the Acegi Filter mapped to *.do, so it's not going to be
called when the request for j_acegi_security_check comes in.  It's
being passed straight on to struts, and since you don't have an action
mapped to j_acegi_security_check either, you're getting that
exception.

> javax.servlet.ServletException: Cannot retrieve mapping for action 
> /j_acegi_security_check

 Try changing your filter-mapping to /*
  (*Chris*)

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

Reply via email to