user384241
user384241

Reputation: 559

Error System.DirectoryServices.DirectoryServicesCOMException (0x8007203B): A local error has occurred

I use following code below to verify user and password in LDAP:

        bool authentic = false;

        string ip_server = "10.53.41.21";
        string userName = "CN=test,N=Users,DC=user,DC=domain,DC=COM";
        string password = "something";
        try
        {
            DirectoryEntry entry = new DirectoryEntry("LDAP://" + ip_server, userName, password);
            //   entry.
            object nativeObject = entry.NativeObject;
            authentic = true;
        }
        catch (DirectoryServicesCOMException) { }
        return authentic;

It is run fine on local and IIS 6.0. But get error when run on IIS 7.0:

System.DirectoryServices.DirectoryServicesCOMException (0x8007203B): A local error has occurred.

   at System.DirectoryServices.DirectoryEntry.Bind(Boolean throwIfFail)
   at System.DirectoryServices.DirectoryEntry.Bind()
   at System.DirectoryServices.DirectoryEntry.get_NativeObject()

How to fix this problem?

Thanks!

Upvotes: 1

Views: 5265

Answers (1)

Phillip Copley
Phillip Copley

Reputation: 4639

You are passing the distinguishedName attribute for username, when it should be in the following format: domain\username

Upvotes: 1

Related Questions