- Adeptia Connect primarily supports three types of Authentication
- Native Authentication, SSO/SML authentication, and LDAP based Authentication
- For SSO/SAML only one IDP can be configured. For example, you cannot have one IDP for External and another one for Internal users
- The recommendation is to have LDAP for Internal users and SSO/SAML for External Users
- Multi-mode authentication is not supported in AIS (SSO/SAML, LDAP)
- MFA is currently not supported
Network Diagram with LDAP | Network Diagram with SSO/SAML |
---|---|
SSO/SAML Authentication Flow
The application will use this mapping to verify user attributes in SAML Response with User attributes in Adeptia. If the 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 |
---|---|