Hi @G_Niles , Welcome to Microsoft Q&A,
Make sure that the correct claim rules are configured in ADFS to publish the claims you need. You can check and configure by following the steps below:
- Open the ADFS Management Console.
- Navigate to Relying Party Trusts.
- Select your application and click Edit Claim Rules.
- In the Sending Rules tab, check the existing claim rules. If you need to add new claim rules, you can click the Add Rule button and follow the wizard.
Check your application's web.config
or app.config
file to make sure it is configured correctly. Pay special attention to the following points:
-
wsFederation
configuration section -
identityConfiguration
configuration section
Make sure the claim type (URI) is correct. For example:
<system.identityModel>
<identityConfiguration>
<claimsAuthenticationManager type="YourNamespace.YourClaimsAuthenticationManager, YourAssembly" />
<claimsAuthorizationManager type="YourNamespace.YourClaimsAuthorizationManager, YourAssembly" />
</identityConfiguration>
</system.identityModel>
<system.identityModel.services>
<federationConfiguration>
<cookieHandler requireSsl="false" />
<wsFederation passiveRedirectEnabled="true" issuer="https://your-adfs-server/adfs/ls/" realm="https://your-app" requireHttps="false" />
</federationConfiguration>
</system.identityModel.services>
Best Regards,
Jiale
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.