I've a web service deployed on one of the servers which internally uses System.DirectoryServices to change password using following code :

            DirectoryEntry obDirectoryEntry = GetCurrentUserDirectoryEntry();
            obDirectoryEntry.Invoke("ChangePassword", new object[] { sOldPassword, newPassword });
            obDirectoryEntry.CommitChanges();
            obDirectoryEntry.Close();

This web service is working fine when hit from a particular different domain, but fails with following error when hit from some other :

Configuration information could not be read from the domain controller, either because the machine is unavailable, or access has been denied.

What could be the reason of this? And what is the workaround?

Thanks a lot, Ishan

link|improve this question
feedback

1 Answer

Need more info about the particular network setup, but a workaround would be to specify the DomainController that works.

In your GetCurrentUserDirectoryEntry() method, you can use the overload:

var user = new DirectoryEntry("LDAP://WorkingDomainController", ...);

See: http://www.codeproject.com/KB/system/everythingInAD.aspx#7

link|improve this answer
Thanks. The tip that you gave for DirectoryEntry() is being done anyway but does not seem to be helping. Is there anything else that we're doing wrong? Any checklist for the network setup that can be referred to? Thanks again. – Ishan Mistry Jan 18 at 10:34
Just the basic stuff, verify that you can query LDAP/AD from powershell on the application machine and that the trust relationship between the machine and the domain is intact in the catalogs on both DCs. But really need more information on the AD setup - could be anything from site segmentation, to subnets, or anything... – lukiffer Jan 18 at 11:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.