Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Creating Java EE application with SAML & ADFS for Single Sign On

I'm going to implement Single Sign On to a java application using ADFS as the Identity provider(IDP). Found this solution SSO via OneLogin and played around with its sample application. Apart from this, there is another solution Shibboleth.

I would like to know what is the best possible solution matching to my context. Between, this is not a Spring application.

Thanks

like image 600
Anuruddha Avatar asked Feb 08 '17 06:02

Anuruddha


1 Answers

If you really don't want to use Spring Security SAML extension (which really only takes a few minutes to integrate it into your app) then you may need to look at

https://github.com/onelogin/java-saml or the Fedlet from OpenAM, however this requires much more additional coding than Spring Security SAML extension.

like image 168
Bernhard Thalmayr Avatar answered Sep 23 '22 03:09

Bernhard Thalmayr