I have a ASP.net (4.5) application that currently uses Identity
to authenticate a user. The user has to supply the username and password via the login page.
In addition to Identity
, I would like to implement a check against Azure's Active Directory. This is due to the fact, that some users are stored in the database (validation through Identity
) and other users will be stored in Azure's Active Directory.
Ideally, I would like to re-use the username/password that the user has entered already and perform the validation against Azure AD in the background.
However, reading through the Authentication Scenarios for Azure AD, I was not able to find a scenario that would fit my needs. Maybe I simply missed it or I did not understand the scenarios fully?
Is the only solution for my web application to do the redirect to Azure AD?