1. Spring Security 3: Is it possible to see which AuthenticationProvider has authenticated a session? stackoverflow.comI have an AuthenticationManager with multiple AuthenticationProviders. That works very well, the first AP that can auth² the Authentication authenticates the user and if none can, the user is refused. Now I ... |
2. Is it possible to use a different Spring Security AuthenticationProvider in different servlets, same WAR? stackoverflow.comI have a single WAR that runs two servlets. One provides AMF remoting to Flex clients and other SOAP/HTTP to web service clients. I currently have Spring Security configured ... |
3. Throwing Custom Exception and Display Error Message from Custom AuthenticationProvider stackoverflow.comThis is a follow up to this question. I have a custom AuthenticationProvider that extends AbstractUserDetailsAuthenticationProvider. In the additionalAuthenticationChecks I am doing some custom auth work and part of this ... |
4. Can a custom spring-security AuthenticationProvider set up an OAuth2 Security Context? stackoverflow.comI am trying to set up a spring 3 webapp to act as a proxy for another app that serves protected resource with oauth2. We're using the UsernamePassword grant type. My ... |
5. No AuthenticationProvider found for UsernamePasswordAuthenticationToken stackoverflow.commy web.xml config is
|
6. Can't hit custom AuthenticationProvider forum.springsource.orgCan't hit custom AuthenticationProvider I created custom AuthenticationProvider and post the request to "/j_spring_security_check" with parameters "j_username" and "j_password". But I don't hit this provider class. Why? Here is configuration: Code: ... |
7. Using Custom AuthenticationProvider with CAS forum.springsource.orgUsing Custom AuthenticationProvider with CAS Hello everyone, I was wondering if anyone has any advice or opinion on this. I wrote a custom AuthenticationProvider that authenticates a user against our mainframe. ... |
8. Can't access custom AuthenticationProvider? forum.springsource.orgCan't access custom AuthenticationProvider? I'm using Spring Security 3 for the first time, and am having problems with the xml configuration. Whatever I do my custom AuthenticationProvider isn't being called. Code: ... |
9. Remember Me - No AuthenticationProvider found for UsernamePasswordAuthenticationToken forum.springsource.orgMay 4th, 2011, 04:04 AM #1 connect2vishal View Profile View Forum Posts Private Message Junior Member Join Date Apr 2011 Posts 3 Remember Me - No AuthenticationProvider found for UsernamePasswordAuthenticationToken Problem ... |
10. No AuthenticationProvider found forum.springsource.orgHi All, I am migrating the code from spring 2.0 to 3.0 and I defied the authentication provider. please see the code below. |
11. INject HttpServletRequest into custom AuthenticationProvider forum.springsource.orgHello: I have written a custom AuthenticationProvider which needs access to HttpServletRequest parameters. I tried private @Autowired HttpServletRequest request; but that doesn't work. Can anybody help me? Thanks, Eric |
12. CXF Framework with Spring Security - not going though AuthenticationProvider.?? forum.springsource.orgSep 19th, 2011, 05:07 PM #1 user100 View Profile View Forum Posts Private Message Junior Member Join Date Sep 2011 Posts 2 RESTful webservice with Spring Security - not display Login ... |
13. AuthenticationProvider needed for web app? forum.springsource.orgIs it enough to implement the attemptAuthentication of the AbstractAuthenticationProcessingFilter to support custom authentication? Or, do I have to delegate the actual authentication to an AuthenticationProvider through the authenticate method of ... |
14. Custom AuthenticationProvider hit only once forum.springsource.org[SOLVED]Custom AuthenticationProvider hit only once Hi. I have a strange problem with custom AuthenticationProvider. So I created one and when I log for the first time it hits public Authentication authenticate. ... |
15. help in custom AuthenticationProvider forum.springsource.orghelp in custom AuthenticationProvider I need to get user authenticated from a existing class UserManager#login(username,password) which returns me a Token object. I don't understand how the authentication process works. Login forms ... |
16. AuthenticationProvider forum.springsource.orgAuthenticationProvider Hi all, i tried to implement my own provider implementing authenticate for testing purposes as follow ..... public Authentication authenticate(Authentication authentication) throws AuthenticationException { if ("LBO".equals(authentication.getName()) && "LBO".equals(authentication.getCredentials().toStr ing())) { ... |
17. AuthenticationProvider question forum.springsource.orgHello, Spring Live book, pp375. Shows a bean like so: |
18. CAS integration, no AuthenticationProvider found issue forum.springsource.orgNov 29th, 2006, 04:30 PM #1 craig.schneider View Profile View Forum Posts Private Message Junior Member Join Date Nov 2006 Posts 19 CAS integration, no AuthenticationProvider found issue Hello - I ... |
19. AuthenticationProvider to force behaviour after login forum.springsource.orgAuthenticationProvider to force behaviour after login Is there a way to fullfill a logon in Acegi Security, combined with throwing a certain exception (to force the user to a certain view ... |
20. Idiots guide to writing own AuthenticationProvider forum.springsource.orgThere isn't an idiots guide that I have seen, but the source code is available as it is open source. What is it specifically you want to do that the current ... |
21. AuthenticationProvider via web services forum.springsource.orgAuthenticationProvider via web services Hi all, I have please in the following situation. We have now one system that uses Acegi with connection to LDAP. Now we need to divide our ... |
22. Customise x509 AuthenticationProvider forum.springsource.orgCustomise x509 AuthenticationProvider Hi, I`m using the spring-security-core 2.0.1 snapshot. I`m trying to incorporate our existing system ,which uses X509 client certificationand a authentication system which has a LDAP server behind ... |
23. AuthenticationProvider forum.springsource.orgJun 17th, 2008, 09:39 AM #1 ManuelBreu View Profile View Forum Posts Private Message Member Join Date May 2008 Posts 34 AuthenticationProvider Hey guys! I'm working on a webapplication which uses ... |
24. Ldap Authentication failed message comes up "No AuthenticationProvider..." forum.springsource.orgLdap Authentication failed message comes up "No AuthenticationProvider..." Hi, Using Ldap for Authentication. Authentication is working fine when entering the correct username/password. When the username or password is entered incorrectly this ... |
25. Custom AuthenticationProvider forum.springsource.orgCustom AuthenticationProvider Hi, I created a custom DefinitionSource and a custom authentication provider. In my authentication provider I set the user details object as Code: GrantedAuthority[] g = getRolesFromDB(userID); MyDetails nu ... |
26. No AuthenticationProvider found for UsernamePasswordAuthenticationToken forum.springsource.orgNo AuthenticationProvider found for UsernamePasswordAuthenticationToken I am using Spring DM and the web extender and trying to get spring security working in Equinox. Basically, I am doing the following in one ... |
27. HttpSession and AuthenticationProvider forum.springsource.orgHello, Is it possible to place an object into the HttpSession from within an AuthenticationProvider? If not, how is the best way to go about it. Also, does the httpSession contain ... |
28. How to create an AuthenticationProvider that automatically authenticates forum.springsource.orgHi I'm using ACEGI 1.0.5. I need to create an AuthenticationProvider that automatically authenticates the user without goint to a login page. How do I create my AuthenticationProvider to do this ... |
29. No AuthenticationProvider found after upgrade to Spring Security 3.0M2 forum.springsource.orgNo AuthenticationProvider found after upgrade to Spring Security 3.0M2 Hello, I'm new spring, and trying out the spring security, I wrote a sample using spring security 2.0.5 which is working fine, ... |
30. Access Denied with custom AuthenticationProvider forum.springsource.orgPHP Code: |
31. Get access to HttpServletRequest within a custom AuthenticationProvider forum.springsource.orgHow do I get access to HttpServletRequest within a custom AuthenticationProvider. I have tried doing this RequestAttributes requestAttributes = RequestContextHolder.getRequestAttributes(); HttpServletRequest request = ((ServletRequestAttributes) requestAttributes).getRequest(); but RequestContextHolder.getRequestAttributes(); returns null. I want ... |
32. Multiple ProviderManagers ignoring custom AuthenticationProvider forum.springsource.orgMultiple ProviderManagers ignoring custom AuthenticationProvider I have a custom AuthenticationProvider (basically a POJO-based DAO UserDetailsService) that handles loading users from the Postgres DB. I've tried to configure Spring Security 3 to ... |
33. No AuthenticationProvider found for UsernamePasswordAuthenticationToken forum.springsource.orgNo AuthenticationProvider found for UsernamePasswordAuthenticationToken Hi i'm trying to use the Spring LDAP authentication in my application, but i'm getting next error: There was an unhandled failure on the server. No ... |
34. Can I use two AuthenticationProvider? forum.springsource.orgHi, I am using Spring Security in my application and I need to authenticate two types of user, that are stored in differents tables in my database. In AuthenticationManager, I will ... |
35. Replacing existing Spring AuthenticationProvider? forum.springsource.orgReplacing existing Spring AuthenticationProvider? I'd like to update my application's user entity after every successful OpenID authentication. Also, since I don't need extra registration details besides the AX attributes I get ... |
36. Custom AuthenticationProvider issue forum.springsource.orgCustom AuthenticationProvider issue Hi: I am new to spring security and having a problem configuring a custom AuthenticationProvider for my application. I am using spring security 3.0.3. What I am trying ... |
37. Custom Authentication Provider - No AuthenticationProvider found forum.springsource.orgCustom Authentication Provider - No AuthenticationProvider found I am trying to use Spring Security with a custom Authentication Provider. I need to use a custom Authentication Provide becuase username/password validation needs ... |