Which IIQ version are you inquiring about?
8.2
I need to add authnContextClassRef=“urn:oasis:names:tc:SAML:2.0:ac:classes:unspecified” in SAML for Azure IDP. When I add this tag next to nameIDFormat, it breaks the sso.
Here is my metadata in saml config.
<Attributes>
<Map>
<entry key="IdentityIIQ">
<value>
<SAMLConfig assertionConsumerService="XYZ" bindingMethod="urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST" entityId="XYZ" idpServiceUrl="XYZ" issuer="XYZ" nameIdFormat="urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified">
<IdpPublicKey>-----BEGIN CERTIFICATE-----XYZ-----END CERTIFICATE-----
</IdpPublicKey>
<RuleRef>
<Reference class="sailpoint.object.Rule" id="0ab10b5283661057818366f176c003ef" name="SSO-SAML-Correlation"/>
</RuleRef>
</SAMLConfig>
</value>
</entry>
</Map>
</Attributes>
If I add the attribute authnContextClassRef=“urn:oasis:names:tc:SAML:2.0:ac:classes:unspecified”, it breaks SSO. What am I missing?
<SAMLConfig assertionConsumerService="XYZ" bindingMethod="urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST" entityId="XYZ" idpServiceUrl="XYZ" issuer="XYZ" nameIdFormat="urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified" authnContextClassRef="urn:oasis:names:tc:SAML:2.0:ac:classes:unspecified">