- Adeptia Connect primarily supports 3 forms of Authentication
- Native Authentication, SSO/SML authentication and LDAP based Authentication
- For SSO/SAML only one IDP can be configured. e.g. you cannot have one IDP for External and another one for Internal users
- Recommendation is to have LDAP for Internal users and SSO/SML for External Users
- OAuth2 and MFA are currently not supported
- SAML and LDAP Multi-mode is possible only in Connect but not recommended
- Multi-mode authentication is not supported in AIS (SSO/SAML, LDAP)
Network Diagram with LDAP | Network Diagram with SSO/SAML |
---|---|
SSO/SAML Authentication Flow
Application will use this mapping to verify user attributes in SAML Response with User attributes in Adeptia. If value of all the attributes matches, it will allow access :
<?xml version="1.0" encoding="UTF-8"?>
<SAMLConfiguration>
<mapping>
<field name="entityName">
<mapped-attribute>FirstName</mapped-attribute>
</field>
</mapping>
<mapping>
<field name="email">
<mapped-attribute>EmailAddress</mapped-attribute>
</field>
</mapping>
</SAMLConfiguration>
LDAP Authentication Flow | SSO/SAML Authentication Flow |
---|---|