Page 2 of 2 FirstFirst 12
Results 11 to 13 of 13

Thread: Spring Security 2.0.4 Released

  1. #11
    Join Date
    Feb 2009
    Posts
    14

    Default Spring Security & Ntlm & Tomcat

    I'm looking for a complete web application sample using the latest spring security with windows authentication (NTLM) and Tomcat. I know how to authenticate using spring security against a database but I'm struggling when trying to authenticate based on NTLM in Windows Server 2003. Any guidance you can give will be appreciated.

    Thank,

    Alberto Acevedo

  2. #12
    Join Date
    Oct 2008
    Posts
    12

    Default

    @Override
    public void logout(HttpServletRequest request, HttpServletResponse response,
    Authentication authentication) {
    if (authentication.getPrincipal() instanceof User) {
    User user = (User) authentication.getPrincipal();
    if (user != null) {
    ...}
    }
    }

    Am getting authentication parameter as null in Spring security 2.0.4 at the time of session timeout.

  3. #13
    Join Date
    Feb 2009
    Posts
    14

    Default Spring security & JCIF not working with NTLMv2

    Quote Originally Posted by pitirre View Post
    I'm looking for a complete web application sample using the latest spring security with windows authentication (NTLM) and Tomcat. I know how to authenticate using spring security against a database but I'm struggling when trying to authenticate based on NTLM in Windows Server 2003. Any guidance you can give will be appreciated.

    Thank,

    Alberto Acevedo
    I tried using Spring security that is dependent on JCIF to authenticate users based on NTLMV2 SSO windows authentication. All intents to make it to work failed. I even tried samples I found in the internet with the same result. After all the hard work I found out that Spring Security and JCIF can not SSO authenticate based on NTLMV2. I finally found a solution by using Jespa. Jespa is not open source but the cost of the license is affordable. Are there any plans to have Spring security doing SSO NTLMV2 authentication in Windows platforms? Is there any solution already available of Spring security with Jespa?

    Thanks,

    Alberto Acevedo

Posting Permissions

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