> Does anyone know a good way to pass multiple user_attributes like > first_name, last_name, email_address, and a unique_identifier from LDAP thru > CAS
This is the attribute release feature of CAS, https://wiki.jasig.org/display/CASUM/Attributes. Clients request attribute data by communicating with the CAS server via the SAML 1.1 protocol for service ticket validation. See https://wiki.jasig.org/display/CASUM/SAML+1.1 for more details. > to populate profile data within our hosted third party application? How you actually get attribute data into your application and what you do with it is a matter you'll have to solve on your own. All the "official" clients provide API hooks to get at the attributes that you'll have to leverage within your application to perform operations like authorization, personalization, localization, etc. Spring Security is an example of an existing framework that has built-in support for consuming attributes for the purposes of authorization, but I imagine your needs will require custom code. M -- You are currently subscribed to [email protected] as: [email protected] To unsubscribe, change settings or access archives, see http://www.ja-sig.org/wiki/display/JSG/cas-user
