FilterSecurityInterceptor « Web « Spring Q&A





1. multiple http configurations using 3.1.0.RC1 - FilterSecurityInterceptor error    forum.springsource.org

multiple http configurations using 3.1.0.RC1 - FilterSecurityInterceptor error I just upgraded to 3.1.0.RC1 to take advantage of being able to configure multiple http configurations. My configuration using a single http element ...

2. FilterSecurityInterceptor and request parameters    forum.springsource.org

FilterSecurityInterceptor and request parameters Hi all, I'm evaluating Acegi for use in a new web project. I've taken a look at the reference docs, and there is an example of using ...

3. unprotected path with FilterSecurityInterceptor    forum.springsource.org

unprotected path with FilterSecurityInterceptor I would like my login page to to be inside a protected directory hierarchy. For example, I want to protect /admin/*, but put the login page at ...

4. FilterSecurityInterceptor can't match URL parameters    forum.springsource.org

FilterSecurityInterceptor can't match URL parameters I am having trouble setting up a FilterSecurityInterceptor that is supposed to match a URL with parameters. Our application is built using the mach-ii framework, and ...

5. FilterSecurityInterceptor and request parameters (again)    forum.springsource.org

FilterSecurityInterceptor and request parameters (again) I'm posting a new topic, though there is one with a very similar name. Unlike that post's scenario, my scenario involves authenticating based upon performing some ...

6. FilterSecurityInterceptor & Regular Expression    forum.springsource.org

I tried searching for an answer to this but I can't seem to locate one. I'm struggling with the RE for protecting URLS. I need to protect a file such as ...

7. FilterSecurityInterceptor giving me BeanNotOfRequiredTypeException    forum.springsource.org

FilterSecurityInterceptor giving me BeanNotOfRequiredTypeException Code: org.springframework.beans.factory.BeanNotOfRequiredTypeException: Bean named 'filterSecurityInterceptor' must be of type [javax.servlet.Filter], but was actually of type [org.acegisecurity.intercept.web.FilterSecurityInterceptor] org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:245) org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:151) org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:557) org.acegisecurity.util.FilterChainProxy.obtainAllDefinedFilters(FilterChainProxy.java:253) org.acegisecurity.util.FilterChainProxy.doFilter(FilterChainProxy.java:169) org.acegisecurity.util.FilterToBeanProxy.doFilter(FilterToBeanProxy.java:120) My security.xml contains, among other ...

8. newbie: FilterSecurityInterceptor not working?    forum.springsource.org

I'm trying to learn acegi 1.0.0 RC2 by integrating it into my simple Spring 2.0 M2 application. I've been borrowing xml from the contacts application. Things seem to work except for ...

9. filterSecurityInterceptor do not catch error !    forum.springsource.org

Jan 17th, 2007, 05:42 PM #1 pljl View Profile View Forum Posts Private Message Junior Member Join Date Nov 2006 Posts 19 filterSecurityInterceptor do not catch error ! Hi, I'm currently ...





10. forward (serverSideRedirect) and filterSecurityInterceptor    forum.springsource.org

forward (serverSideRedirect) and filterSecurityInterceptor Hello, since we are using struts1 we are doing some forwards (aka serverSideRedirect). I have configured the web.xml as follows (with dispatcher forward): Code: Acegi Authentication ...

11. Specific an URL with param for the FilterSecurityInterceptor    forum.springsource.org

Hi, Is it possible to protect an url with a given parameter and value, sth like this: /management/test.html?action=create = ROLE_ADMIN Thanks for any answer, Christophe

12. Multiple Outputs after FilterSecurityInterceptor    forum.springsource.org

Multiple Outputs after FilterSecurityInterceptor Hello all, I think this is more of a philosophical question, but hopefully someone can shed some light... I would like to use something similar to the ...

13. A question about using "FilterSecurityInterceptor"    forum.springsource.org

A question about using "FilterSecurityInterceptor" Hi all, in my "applicationContext.xml" I use the "FilterSecurityInterceptor" and looks as follow: ... Code: ...

14. Help with nested directories in FilterSecurityInterceptor    forum.springsource.org

Help with nested directories in FilterSecurityInterceptor It's kind of sad that I haven't been able to find ANYONE who seems to have done this before... v~v Anyway, I have a user ...

15. FilterSecurityInterceptor    forum.springsource.org

Hi, I want to read from my DB the intercept-url. I read some threads about my problem and I think I have to write my FilterSecurityInterceptor, but I don't understand how ...

16. is redundant if filterSecurityInterceptor defined?    forum.springsource.org

is redundant if filterSecurityInterceptor defined? Is the element code containing the elements redundant if you have a filterSecurityInterceptor (Code Segment 3) in your filterChainProxy (like in Code Segment ...





17. FilterSecurityInterceptor    forum.springsource.org

Hi All, I would like to understand why FilterSecurityInterceptor has a property for AuthenticationManager? If authentication fails, shouldn't FilterSecurityInterceptor simply throw an AuthenticationException? This will then be caught by ExceptionTranslationFilter & ...

18. filterSecurityInterceptor and metadatasource implementation    forum.springsource.org

filterSecurityInterceptor and metadatasource implementation Hi! I am created a class that implements the FilterInvocationSecurityMetadataSource interface. One of it's methudes, getAttributes, I implemented. the other tow are empty. Code: public List getAttributes(Object ...

19. filterSecurityInterceptor    forum.springsource.org

filterSecurityInterceptor Hello, in my Spring Web Application it is necessary to declare restrictions for different html- pages, e.g. all with the role ROLE_USER are allowed to see home.html, only user with ...