Hi Everyone.
Can someone take a look to this pls? :)
Kind Regrds
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi Everyone
I need to add a Claim Rule with MultiValue schacPersonalUniqueCode in ADFS, so far i can add one value but i need to add a second value that use the same Type in the same rule. How can i do it?
I have this code now:
c:[Type == "urn:mace:dir:attribute-def:employeeNumber"]
=> issue(Type = "urn:schac:attribute-def:schacPersonalUniqueCode", Value = "urn:schac:personalUniqueCode:nl:local:Mycompany:studentid:" + c.Value);
And i need to add the a second value with: "urn:schac:personalUniqueCode:nl:local:Mycompany:employeeid:"
Thanks Gents/Ladies
Hi Everyone.
Can someone take a look to this pls? :)
Kind Regrds
I am not sure I understand the ask...
I don't understand the logic behind the claims you have so I'll use the generic claims. Let's say you have the following claims:
You would like to set Claim3 as a multi value claim with the values of Claim1 and Claim2. You would do the following:
c:[Type == "Claim1"] => issue(Type = "Claim3", Value = c.Value);
and
c:[Type == "Claim2"] => issue(Type = "Claim3", Value = c.Value);
You issue the claim Claim3 twice so it is now "multi value". Does this help?