Reputation: 1607
Is there any good example available for IdP initiated SSO (Single Sign On) using Spring SAML for the starters
Upvotes: 1
Views: 4176
Reputation: 15533
The Spring SAML quick start guide has a section for testing of IDP-initialized SSO:
You can test IDP initialized single sign-on with URL https://idp.ssocircle.com:443/sso/saml2/jsp/idpSSOInit.jsp?metaAlias=/ssocircle&spEntityID=replaceWithUniqueIdentifier, after replacing the service provider identifier with the one configured as entityId in your securityContext.xml. It is possible to provide relayState data sent to your SP with parameter RelayState.
Upvotes: 3