authentification « Security « Spring Q&A





1. How can a HttpClient be configured for basic - authentification?    stackoverflow.com

I found this sequence to set up basic authentication here:

HttpClient client = new HttpClient();

client.getState().setCredentials(
   new AuthScope("www.domain.com", 443, "realm"),
   new UsernamePasswordCredentials("username", "password") );
How can this be ...

2. Spring security 3 : Save informations about authentification in database    stackoverflow.com

I need to save some informations about user when he is authentificated like his IP Adress and authentification date and other stuff into the database. In other words i want to ...

3. java WEB application - authorization throught domain user    stackoverflow.com

I have a java web application (running on JBoss), which need to authorizate users by their domain objects, without asking any usernames and passwords. Users are running windows, authorization with LDAP server. WEB ...

4. 2 different authentification mechanism in the same application ?    forum.springsource.org

2 different authentification mechanism in the same application ? Hi, I have an unusual requirement that consists of 2 separate authentication mechanisms in function of the accessed url. For all the ...

5. Is there possibility to use Spring Security without it's authentification mechanism?    forum.springsource.org

I only need to secure URLs and methods. My application has own difficult authentification method, and I can simply set the SecurityContext in this method: Code: SecurityContextHolder.getContext().setAuthentication(new UsernamePasswordAuthenticationToken(user.getUsername(), user.getPassword(), authorities)); Securing ...

6. LDAP / SSL Authentification Password    forum.springsource.org

Is there any tutorial or howto to setup a ldap authentification ? If there isn't, can someone give some guideline plz ? I'm working with acegi 0.8.3. Must I migrate to ...

7. Initialisations after authentification    forum.springsource.org

Hello, I'd like to have some initialisations executed after the user has been logged in. I found a solution by overriding attemptAuthentication method of AuthenticationProcessingFilter. It worked fine, until using rememberMe ...

8. [Newbie inside]Trouble to get Authentification obj in jsp    forum.springsource.org

Aug 28th, 2006, 10:34 AM #1 meshenka View Profile View Forum Posts Private Message Visit Homepage Member Join Date Oct 2005 Posts 32 [Newbie inside]Trouble to get Authentification obj in jsp ...

9. Can't access any pages after authentification    forum.springsource.org

Can't access any pages after authentification Hi, i just start to learn spring techs and acegi, at this time i wrote a authentification form and somes pages that could be acceded ...





10. ACEGI with JDBC Authentification: Exception sending context initialized    forum.springsource.org

Mar 11th, 2008, 02:55 PM #1 richard_lavoie View Profile View Forum Posts Private Message Junior Member Join Date Dec 2007 Posts 21 ACEGI with JDBC Authentification: Exception sending context initialized Hi ...

11. [IP Authentification]    forum.springsource.org

Hello, I need to implement an IP auth. In which part should I do it ? Besides, after authentification, how sessions are managed (request/session scopes) ? Thanks for any help.

12. Ldap authentification and Hierarchical roles    forum.springsource.org

Ldap authentification and Hierarchical roles Hi I would like to create an authentification with LDAP but I have in my current config a hierarchical role definition. Code: ...

13. Apache Basic Authentification VS Spring Form Authentification    forum.springsource.org

Apache Basic Authentification VS Spring Form Authentification Hi, I have got a weird behaviour while trying to authenticate : I have got 2 usually servers : 1- Apache for serving static ...

14. authentification arguments    forum.springsource.org

I've created the following database structure : user1 role1 module1 user1 role1 module2 user1 role2 module2 The LoginBean in my jsf webapp can only send j_username and j_password input fields to ...

15. How to implement own logic after authentification?    forum.springsource.org

Sep 1st, 2009, 08:02 AM #1 chefkoch View Profile View Forum Posts Private Message Junior Member Join Date Aug 2009 Posts 3 How to implement own logic after authentification? Hello guys, ...

16. Authentification with Spring Security (Please help)    forum.springsource.org

Apr 13th, 2010, 10:57 AM #1 ibtissem07 View Profile View Forum Posts Private Message Member Join Date Mar 2010 Posts 77 Authentification with Spring Security (Please help) Hi I did authtentification ...





17. authentification with spring security    forum.springsource.org

Apr 26th, 2010, 07:08 AM #1 ibtissem07 View Profile View Forum Posts Private Message Member Join Date Mar 2010 Posts 77 authentification with spring security Hi I used spring security for ...

18. Acegi Authentification page    forum.springsource.org

May 26th, 2010, 08:04 AM #1 acegifaq View Profile View Forum Posts Private Message Junior Member Join Date May 2010 Posts 2 Acegi Authentification page I'm quite new with Spring Security ...

19. Acegi + ADAM: authentification problem with roles (must add role user/admin in ADAM)    forum.springsource.org

Acegi + ADAM: authentification problem with roles (must add role user/admin in ADAM) Hi, I' m new to both acegi and ADAM, i have a problem of authetification . We use ...