Reputation: 1
Im a newbie to the SSO concept and SAML.My requirement is in detail below :
Here, my application is working as Service Provider. My question is : as SP, how could I generate SAML 2.0 request to other applications from mine? How to check whether my application supports SAML 2.0?(its java based). To conclude, how to generate and send/receive digital signatures through SAML 2.0?
Can anyone please explain me the flow first then direct me to some link?
Upvotes: 0
Views: 511
Reputation: 46720
Does your application support SSO? If not, it probably doesn't support SAML.
You need a client side SAML stack. - examples here.
The commercial implementations in particular have lots of example code.
For Java, look at the Spring SAML extension.
Also, get as much information as you can re. the IDP because that will determine what SAML protocols and bindings you need to implement.
Upvotes: 0