| Author |
Authentication using Active Directory
|
|
| GaryDean 2007-07-31, 7:12 pm |
| Are there any actual examples on how to authenticate against Active
Directory using DirectoryServices? I've combed the docs but haven't found
much in the way of examples.
I found....
Imports System.DirectoryServices
Dim myDirectoryEntry As DirectoryEntry
myDirectoryEntry = New DirectoryEntry("LDAP://...")
but that's about it.
--
Regards,
Gary Blakely
| |
|
|
| Jim in Arizona 2007-07-31, 7:12 pm |
| GaryDean wrote:
> Are there any actual examples on how to authenticate against Active
> Directory using DirectoryServices? I've combed the docs but haven't found
> much in the way of examples.
>
> I found....
> Imports System.DirectoryServices
> Dim myDirectoryEntry As DirectoryEntry
> myDirectoryEntry = New DirectoryEntry("LDAP://...")
>
> but that's about it.
>
OH yea. I forgot to mention another option. If you go to Google code
search and type in System.DirectoryServices you'll get some code samples
that may also help you.
http://www.google.com/codesearch?q=...tnG=Search+Code
|
|
|
|