Filter 2 « Security « Spring Q&A





1. Authentication logic coupled to servlet filters    forum.springsource.org

Authentication logic coupled to servlet filters Hi, I am trying to use SpringSecurity for authentication in a HTTP-based web-application, but I need to decouple the authentication logic from servlet-filters. That is, ...

2. On incorrect password, filters get invoked for 2 times,Pls help urgently    forum.springsource.org

On incorrect password, filters get invoked for 2 times,Pls help urgently Hi all, For the basic authentication, in the UserAuthenticationDaoHibernate class I am fetching the password stored in the database and ...

3. custom Authentication Processing Filter    forum.springsource.org

custom Authentication Processing Filter I was using a little tutorial from this place and tried to implement that in my site to try and understand it a little better. But it ...

4. Domain object security that uses database for filtering    forum.springsource.org

Domain object security that uses database for filtering I am very interested in domain object security and therefore Spring Security's ACL services. I downloaded the Contacts sample application and am very ...

5. How to avoid images, css, javascripts from Security Filters    forum.springsource.org

How to avoid images, css, javascripts from Security Filters Hi, From understanding there are two ways with which we could avoid the resources like images, css files, javascripts etc from SpringSecurity ...

6. Exception mapping in authentication processing filter    forum.springsource.org

Hi i am new to spring security. i am able to apply security to my application with autoConfig=true. now my requirement is when user credentials expired exception is thrown i need ...

7. spring authentication provider VS authentication processing filter    forum.springsource.org

AuthenticationProcessingFilter handles web (HTTP) authentication requests (and isn't registered with the AuthenticationManager). i.e. it processes submissions to the URL j_spring_security_check. AuthenticationProvider handles authentication requests (not HTTP ones) at the back end: ...

8. Authorization: URL-filter pattern/syntax issue    forum.springsource.org

Hi, I am trying to setup spring security authentication and authorization. Authentication is working fine. I am facing issues with Authorization. NOTE: My Spring security configuration is attached - refer security.txt. ...

9. custom AUTHENTICATION_PROCESSING_FILTER problem    forum.springsource.org

custom AUTHENTICATION_PROCESSING_FILTER problem Hi all, i'm brand new to spring security. In our project we need to change passwords of users at the first login to the application. Or when the ...





10. security filter issue    forum.springsource.org

Aug 20th, 2009, 04:15 AM #1 aqua View Profile View Forum Posts Private Message Junior Member Join Date Aug 2009 Posts 2 security filter issue Hi, we are developing an application ...

11. Spring Security Filter not getting invoked for particular URL pattern    forum.springsource.org

Spring Security Filter not getting invoked for particular URL pattern hi, I am facing problem in the filter processing. The filter is not getting invoked for *.jsp pages. Currently filter entry ...

12. unable to filter out images/css from my filterchain spring security    forum.springsource.org

Oct 1st, 2009, 08:27 AM #1 mathaj View Profile View Forum Posts Private Message Junior Member Join Date Sep 2006 Posts 12 unable to filter out images/css from my filterchain spring ...

13. AUTHENTICATION_PROCESSING_FILTER missing in spring-security-3.0.xsd    forum.springsource.org

I'm getting a validation error when I create a custom authentication processing filter. Code: It looks like the enumeration was removed in 3.0.0 M2. I'm ...

14. Access session scoped beans from a servlet filter    forum.springsource.org

Access session scoped beans from a servlet filter Hi... Short question is: Can a session scoped bean be accessed from a servlet filter? Longer version, with details of the environment: We ...

15. collection filtering not working s/     forum.springsource.org

collection filtering not working s/ Hi guys, I am using ACL's and have an AclEntryAfterInvocationCollectionFilteringProvider defined which works fine when using tags within the secured bean. When I try ...

16. Different Filter Entry Points based on Role    forum.springsource.org

Different Filter Entry Points based on Role Hi, I'm developing a webapp which allows for two types for users - User and Admin. There's are two parts of the site - ...





17. Exception starting filter Acegi Filter Chain Proxy    forum.springsource.org

Exception starting filter Acegi Filter Chain Proxy I am trying to incorporate the acegi security components into my project. I am using Spring, developing in Eclipse, and deploying to Tomcat by ...

18. question with pre-authentication filter    forum.springsource.org

question with pre-authentication filter My question is what is the best approach to use the pre-auth filter along with anonymous access for some parts of the application? For background we use ...

19. Second security:http element possible and how to map to filter Name?    forum.springsource.org

Second security:http element possible and how to map to filter Name? Hi. I've got two servlets, each delivering different sites i want to protect with different FilterChainProxy configurations. I would like ...

20. How to properly fail authentication in my filter...    forum.springsource.org

How to properly fail authentication in my filter... I'm implementing a custom filter which extends the org.springframework.security.ui.webapp.Authenticat ionProcessingFilter - in my implementation, I retrieve and check for specific request parameters; if ...

21. Issue with web.xml mapping of Security and URLREWrite filters    forum.springsource.org

Feb 24th, 2010, 07:21 AM #1 LORDs_diakonos View Profile View Forum Posts Private Message Member Join Date Oct 2005 Posts 79 Issue with web.xml mapping of Security and URLREWrite filters I ...

22. Access Custom Filter multiple times    forum.springsource.org

Access Custom Filter multiple times Hi, I'm a spring newbie and i'm implementing a custom filter that used to read/write session data to the database like so: Code: public class MySessionManagementFilter ...

23. How to access standard filters in filter chain?    forum.springsource.org

25. How to custom(override) Spring security filter or provider?    forum.springsource.org

How to custom(override) Spring security filter or provider? Hi all I am using Spring security 3 with openID, there are something I want to use my own demand. 1. use own ...

26. Authentication processing filter    forum.springsource.org

27. injecting a bean in Authentication Processing Filter    forum.springsource.org

injecting a bean in Authentication Processing Filter I have overridden AuthenticationProcessingFilter because I wanted to initialize some session variables at the time of signing in. I have defined services which call ...

28. error in authentication filter    forum.springsource.org

error in authentication filter Hi alll, I have a very simple application using spring security. When I try to acces to secure page I'm getting this error java.lang.NullPointerException org.springframework.security.web.authentication.Ab stractAuthenticationProcessingFilter.unsuccessfulA uthentication(AbstractAuthenticationProcessingFilt ...

29. MDC Log4j Filter with Spring Security 3.0.2    forum.springsource.org

MDC Log4j Filter with Spring Security 3.0.2 Hi, I have just migrated from ACEGI to Spring Security 3.0.2 My app.xml is as below Code: ...

30. Help migrating Spring security 2.5.6 filters to 3.0.2 filters    forum.springsource.org

May 6th, 2010, 03:59 PM #1 infinity2heaven View Profile View Forum Posts Private Message Visit Homepage Senior Member Join Date Nov 2006 Location Boston, US Posts 166 Help migrating Spring security ...

31. How to configure a separate security filter chain, parallel to a regular one?    forum.springsource.org

How to configure a separate security filter chain, parallel to a regular one? I have a web application, mainly providing a service via back-end servlet call: MyServiceServlet, which in turn invokes ...

32. Spring Security Filter Chain, slightly confused    forum.springsource.org

Spring Security Filter Chain, slightly confused I was reading this: http://static.springsource.org/sprin...ter-chain.html web.xml Code: filterChainProxy org.springframework.web.filter.DelegatingFilterProxy filterChainProxy /* appcontext.xml Code:

37. Logging the user, in which filter class?    forum.springsource.org

When a user logs in, I'd like to log the time and date in a database. I thought about making my own implementation of AuthenticationManager. Is this the normal thing to ...

38. Filter results by logged on user    forum.springsource.org

Filter results by logged on user I'm developing an application using Spring Roo and Spring Security. I generated some entities (Users, Questions, Responses) with finders (findQuestionByUsername and so on) . Currently ...

39. Filters and multiple authentication providers    forum.springsource.org

Filters and multiple authentication providers Having implemented the suggestion in this thread, I need to understand why one provider's success results in total success when I want both providers to be ...

40. getRequestDispatcher forward not hitting spring security filter    forum.springsource.org

Currently the following gives me a 404 Error: Code: context.getRequestDispatcher("/test.jsp").forward(request, response); if I do this, it works fine: Code: response.sendRedirect("test.jsp"); I have searched the forums and found a similar issue that ...

41. Spring Security 3 custom filters    forum.springsource.org

Spring Security 3 custom filters Ok, guys, finally I decided to post it into a new thread, the search gave a couple of similar topics but not detailed enough. The task ...

42. Custom Certificate Filter Implementation with Spring Secuirity 2.0.x    forum.springsource.org

Dec 20th, 2010, 01:22 PM #1 pottydj View Profile View Forum Posts Private Message Visit Homepage Junior Member Join Date Dec 2010 Posts 1 Custom Certificate Filter Implementation with Spring Secuirity ...

43. Unable to upload files in Struts2 with Spring Security filter    struts.1045723.n5.nabble.com