Results 1 to 2 of 2

Thread: Which class implement the validation of the authentication

  1. #1
    Join Date
    Jul 2012
    Posts
    1

    Default Which class implement the validation of the authentication

    Hi,

    I would create a web app using Spring Security. Basics are working well, but the next step is more difficult.

    Now I want Spring Security works with another application. Spring Security still catches the login and password, then sends them to the second application and wait for its response (true or false) to know if the user is accepted or not.

    I have been searching long time to know which security classes I have to implement/extend to make it working, but I am a bit lost. Does anyone know the answer?

    Thanks

    Nico R.

  2. #2
    Join Date
    Dec 2008
    Location
    New York City
    Posts
    135

    Default

    Quote Originally Posted by nretrain View Post
    Hi,

    I would create a web app using Spring Security. Basics are working well, but the next step is more difficult.

    Now I want Spring Security works with another application. Spring Security still catches the login and password, then sends them to the second application and wait for its response (true or false) to know if the user is accepted or not.

    I have been searching long time to know which security classes I have to implement/extend to make it working, but I am a bit lost. Does anyone know the answer?

    Thanks

    Nico R.
    You would implement your own implementation of AuthenticationProvider.

    That said, you might consider existing implementations of Single Sign On before proceeding. What you're proposing is non trivial to do in a secure manner.
    Andrew Thompson - Linked In

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •