How to implement claims based authentication in a java application?

I am currently working on a project in which I would like to use claims-based authentication (using the Windows identity framework) in one of my applications.

The only leap forward is the solution I'm developing should also include claims-based access based on a Java application. And since I am a .net developer, I have no idea what technologies are available to implement such a thing in java.

So the question is: does java have libraries to create an application that supports requirements?

Something like Windows or ADFS 2.0 authentication in .net?

Regards, Erwin

+4
source share
2 answers

Good article here: Federation Identity Compatibility - WIF + ADFS + Suns OpenSSO .

Note that this is not a β€œstandard” OpenSSO β€” it requires Federation .

+2
source

I'm not a Java developer either, but I saw people use this: https://opensso.dev.java.net/

But I did not use it myself.

+1
source

All Articles