I use Active Directory for authentication through ActiveDirectoryMembershipProvider in one of my ASP.Net projects.
I connect to it successfully with this LDAP connection string:
LDAP://server/DC=mydomain,DC=com
but two issues remain :
calling
Membership.GetUser("moravej")returns Null whereas callingMembership.GetUser("moravej@mydomain.com")get a correct object. Is there anyway to solve this? I don't want to make the users to use their complete name when AD is transparent to them. Also I prefer not to change my codes to concatenate@mydomain.comto entered values (because of lots of changes I need)I want the membership to be able to use all AD users for login. (it does it in this case) but I want to all the users that will be created by my application goto a CRM OU. If I set the connection string to
LDAP://server/OU=CRM,DC=mydomain,DC=comit returns null when I callMembership.GetUser()for users that are not in this OU.
Is there any way to solve these issues?
Thanks in advance