Active Directory Authentication with Standard Authentication
I would like to authenticate some of my user base against active directory and the rest by just using their umbraco password set in the back office. Is this possible?
I've installed the IdentityExtensions package and followed the documentation from here: https://our.umbraco.com/Documentation/Reference/Security/authenticate-with-AD (which is missing the mapper variable and did not compile initially without modification). I've got active directory sign on working but now my other users which are not in active directory will not pass authentication. Is there a way to have it check active directory first and then fall back on the built in umbraco authentication?
I was able to get this to work as intended by copying the source code for the ActiveDirectoryPasswordChecker and changing the result to use BackOfficeUserPasswordCheckerResult.FallbackToDefaultChecker instead of BackOfficeUserPasswordCheckerResult.InvalidCredentials.
Active Directory Authentication with Standard Authentication
I would like to authenticate some of my user base against active directory and the rest by just using their umbraco password set in the back office. Is this possible?
I've installed the IdentityExtensions package and followed the documentation from here: https://our.umbraco.com/Documentation/Reference/Security/authenticate-with-AD (which is missing the mapper variable and did not compile initially without modification). I've got active directory sign on working but now my other users which are not in active directory will not pass authentication. Is there a way to have it check active directory first and then fall back on the built in umbraco authentication?
I was able to get this to work as intended by copying the source code for the
ActiveDirectoryPasswordChecker
and changing the result to useBackOfficeUserPasswordCheckerResult.FallbackToDefaultChecker
instead ofBackOfficeUserPasswordCheckerResult.InvalidCredentials
.is working on a reply...