[Acegisecurity-developer] Extending the Default LdapAuthoritiesPopulator

2006-02-07 Thread AGeoghegan
I'd like to extend the Default LdapAuthoritiesPopulator is it possible to make the: private InitialDirContextFactory initialDirContextFactory = null; protected? Anthony Geoghegan Framework Architect DeCare Systems Ireland, Building 1, University Technology Centre, Curraheen Road, Cork,

[Acegisecurity-developer] AbstractProcessingFilter and multiple home pages support

2006-02-07 Thread Sergio Bossa
Hello all, Acegi seems to currently miss multiple home pages support depending on the actual user class. IMHO this is a very useful feature, because it is a common task to redirect toward a different home page after successfull login. One implementation could be to add a call to a template

Re: [Acegisecurity-developer] how to use AnonymousProcessingFilter.applyAnonymousForThisRequest() to filter subnet

2006-02-07 Thread Hongbo HE
Thanks Ben. It works like a charm. And I can also have my own AuthenticationTrustResolver Implementation to send 403 response to anonymous user who doesn't have PRIVATE_ANONYMOUS role. Hongbo --- Ben Alex [EMAIL PROTECTED] wrote: Hongbo HE wrote: My config is like following:

Re: [Acegisecurity-developer] AbstractProcessingFilter and multiple home pages support

2006-02-07 Thread Ben Alex
Sergio Bossa wrote: One implementation could be to add a call to a template method into AbstractProcessingFilet.successfulAuthentication(HttpServletRequest request, HttpServletResponse response, Authentication authResult) method, something like : You could also write your own custom