Hi guys,
Thank you for your help, very much appreciated.
I am trying to access AD but with no luck...
I am getting the following error:
Accessing Global Catalog:
FAIL
Checking Root Domain:
OK
Accessing LDAP:
FAIL
Find all domains in network:
Could not access LDAP to obtain domains info
Logon failure: unknown user name or bad password
In know that the credentials are correct since the followgin code does run:
DirectoryEntry entry = new DirectoryEntry("LDAP://" + my_domain, user_name,password);
DirectorySearcher mySearcher = new DirectorySearcher(entry);
mySearcher.Filter = "(&(objectclass=user)(SamAccountName=georgeBush))";
results = mySearcher.FindAll();
The detailes I'm using in the DNN authentication page are:
Provider ADSIAuthenticationProvider
Authentication Type Delegation
Root Domain: my domain
User Name: my domain\user name
Password: XXX
Confirm Password: XXX
Email Domain: empty(I also tried with value)
Auto-login IP Address (Optional):
FAIL
Find all domains in network:
Could not access LDAP to obtain domains info
Logon failure: unknown user name or bad password.