Chris is correct. Acegi has nothing to do with Struts. It's a special URI
that Acegi looks for. Just map your filter to /*

On 7/31/07, Chris Pratt <[EMAIL PROTECTED]> wrote:
>
> >         <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