...
The names for attributes in back-end data stores and consuming applications is decoupled from the expression of attributes on the wire, and it's possible to name an attribute differently for every protocol. The mapping from data stores to SAML at the identity provider is performed using attribute-resolver.xml
. At the service provider, these attributes are then made available to the web server and web applications using attribute-map.xml
.
Code Block |
---|
title | An existing eduPerson attribute |
---|
|
<saml:Attribute FriendlyName="telephoneNumber" Name="urn:oid:2.5.4.20"
NameFormat="urn:oasis:names:tc:SAML:2.0:attrname-format:uri">
<saml:AttributeValue xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:type="xs:string">
555-5555
<>555-5555</saml:AttributeValue>
</saml:Attribute>
|
...