Windows logged in to SSO in Play Framework 2

How to configure SSO with a registered MS Windows user for the Play Framework web application?

I would like to deploy the Play Framework Java web application in a corporate environment in which users expect authentication to be performed behind the scenes using a registered MS Windows user. It is important to be able to adapt the behavior of the java web application depending on who the user is.

I understand that this can be configured for JEE applications using Waffle or SPNEGO. However, how can I do this for a Play Framework 2.x application? Through packaging as a WAR using play2-war-plugin and deploying to a JBOSS application server, for example? If this is a good approach, how can I find information on how to fix the configuration?

+3
source share
1 answer

I created a plugin for Play 2.

It supports SSO using keberos and returns in html.

Take a look at it if you are still looking for a solution.

https://github.com/SlyngDK/play-module-ad-sso

+2
source

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


All Articles