Hi there, here is my challenge
We can work in two SAML integration ways, by means of CAS.5.2 in the same instance of CAS over Tomcat.
Third Party SAML SP => SSO SAML Request => CAS IdP => Trusted Authentication => Our Proprietary IdP
Putting it all together, we have a mixed stage in which:
Instead, CAS returns, to the third party SAML Service Provider, the User Attributes obtained in (A) from the third party SAML Identity Provider.
What we need is to propagate, in (B) way, our Identity Provider’s User Session Identity Attributes, obtained at the end of the (A) way flow.
I think that separating the two flows in two separate CAS instances, all would start to work, but that’s not the challenge.
Thanks for your time and interest
Jon
Notice: This message was sent from outside the University of Victoria email system. Please be cautious with links and sensitive information.
On first Login, CAS obtains the attributes from the third party SAML IdP, not from our IdP. As you say, after that, it does’nt try to add new attributes.
I’ve tried to use the following in SamlRegisteredService’s, but doesn’t resolve the problem
"attributeReleasePolicy" : {
"@class" : "org.apereo.cas.services.ReturnAllAttributeReleasePolicy",
"principalIdAttribute": "id",
"authorizedToReleaseAuthenticationAttributes": true,
"excludeDefaultAttributes": false,
"principalAttributesRepository" : {
"@class" : "org.apereo.cas.authentication.principal.cache.CachingPrincipalAttributesRepository",
"duration" : {
"@class" : "javax.cache.expiry.Duration",
"timeUnit" : [ "java.util.concurrent.TimeUnit", "MILLISECONDS" ],
"expiration" : 100
},
"mergingStrategy" : "ADD"
}
}
The SSO is maintained in our IdP. CAS help us to Trust/Federate/Integrate with third party Identity & Service Providers by means of standards like SAML. Remove our IdP is not an option.
May be what I need is exactly the opposite, forgetting the result of the first SAML SSO Delegation, it would act as if the Trusted Integration is the first Integration act.
But don’t know how to do it.
Thanks
Jon