I have a MVC3 ASP.NET 4.5 web application on Azure Websites.
Can on-premise Active Directory(AD) operate as a user store for an Azure website (WAWS) using membership services?
What happens to the roles, which I currently use as attributes on actions.
Any enlightenment appreciated?
EDIT
Just found that one can configure Membership services to use AD as the membership store, ie:
<connectionStrings>
<add name="ADConnectionString" connectionString="LDAP://testdomain.test.com/CN=Users,DC=testdomain,DC=test,DC=com" />
</connectionStrings>
Whether this would work into an on-premise AD store I am unsure.