joym8
joym8

Reputation: 4202

Azure Active Directory Forms Authentication

WAAD login page just does not seem right, especially because of branding. Is it possible to use the WAAD default domain in web.config of a MVC app with forms authentication. For instance:

<connectionStrings>
    <add name="WAAD" connectionString="LDAP://mydomain.onmicrosoft.com:389"/>
</connectionStrings>

I tried and get Configuration Error Unable to establish secure connection with the server.

Upvotes: 0

Views: 714

Answers (1)

Simon W
Simon W

Reputation: 5496

Azure Active Directory can provide you with a claims-based experience but not a forms-based one. You can't yet customise the Azure login page and there's no capability to make an LDAP-based connection to WAAD.

Upvotes: 1

Related Questions