vote up 6 vote down star
2

Before trying to query the AD server I would like to check if it is alive and kicking. Looks like a trivial thing, but I haven“t found anything to elucidate this.

How can I do that?

flag

1 Answer

vote up 4 vote down check

I just try to get the current domain context associated with the running user:

try {
    var domain = Domain.GetCurrentDomain();
    /* Whatever i need from the domain */
} catch(ActiveDirectoryOperationException ex) {
    MessageBox.Show("Cannot contact AD Server");
}


If you want to connect to another domain you can try:

try {
    var domain = Domain.GetDomain(
        new DirectoryContext(DirectoryContextType.Domain, "mydomain.local"));
    /* Whatever i need from the domain */
} catch(ActiveDirectoryOperationException ex) {
    MessageBox.Show("Cannot contact AD Server");
}
link|flag
That's only going to work if the machine running the code is actually logged into that domain (which doesn't have to be the case). – DannySmurf Nov 27 '08 at 19:37
check out my update. – Y Low Nov 27 '08 at 19:45
I was trying to avoid try/catch constructs, but that do the trick! – Seiti Nov 27 '08 at 20:55

Your Answer

Get an OpenID
or

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