Note that there are some explanatory texts on larger screens.

plurals
  1. POHow to accept SAML2 tokens via tt.idm based on application configuration
    primarykey
    data
    text
    <p>Okay, so, I'm using Thinktecture IdentityModel 4.0 (tt.idm) to accept incoming SAML2 security tokens via my WebAPIs and translate them into ClaimsPrincipals. And I have a project that works the way I expect, based on the samples that come with tt.idm.</p> <p>The only problem is that all of the samples (and, by extension, my project) use hardcoded SecurityTokenHandlerConfiguration objects, and I'd like to use the settings in my WIF configuration.</p> <p>So, I currently have something that looks like this:</p> <pre><code> public static AuthenticationConfiguration Create() { var config = new AuthenticationConfiguration(); var idsrvRegistry = new ConfigurationBasedIssuerNameRegistry(); idsrvRegistry.AddTrustedIssuer("*THUMBPRINT REDACTED*", "*ISSUERNAME REDACTED*"); var idsrvConfig = new SecurityTokenHandlerConfiguration(); idsrvConfig.AudienceRestriction.AllowedAudienceUris.Add(new Uri("http://somerealm.com")); idsrvConfig.IssuerNameRegistry = idsrvRegistry; idsrvConfig.CertificateValidator = X509CertificateValidator.None; config.AddSaml2(idsrvConfig, AuthenticationOptions.ForAuthorizationHeader("SSO_SAML")); return config; } </code></pre> <p>But, I'd like to load those values from my configuration - whether automatically, by loading the microsoft.identityModel configuration section, or...whatever makes sense.</p> <p>So far, though, nothing has worked - just newing up a ConfigurationBasedIssuerNameRegistry, for instance, yields an empty IssuerNameRegistry. And loading up the microsoft.identityModel configuration section yields ... a configuration section with essentially no properties.</p> <p>Is there a way to tell tt.idm to load from the current configuration? Or a way to tell WIF to?</p> <p>How should I proceed? o.O</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload