Kerberos Authentication in Play 2.1

I went through the Play Framework to quickly prototype Java web applications. It looks like the project was exactly what I needed to quickly create a Java-based CRUD application at my work. However, one of the most important requirements is that the application must support Kerberos authentication.

I cannot find documentation on whether this is possible at all. Any clues?

Thanks! Raj

+4
source share
1 answer

As stated in this question . You can use the following plugin: https://github.com/SlyngDK/play-module-ad-sso

If you do not need the LDAP part, you can change the plugin to leave this part.

0
source

Source: https://habr.com/ru/post/1482717/


All Articles