vote up 2 vote down star
1

We are developing our application using MS Visual Studio 2008 VB .Net.

We have to use Active Directory Server for authenticating the user logging into the application.

Does any one has code samples intergrating .Net and ADS?

flag
1  
Please get in the habit of accepting the best answer provided, the one solving your problem. It's the right and polite thing to do on StackOverflow. See: meta.stackoverflow.com/questions/5234/… – marc_s Nov 10 at 22:29

3 Answers

vote up 0 vote down

Assuming you are going to put users into an Active Directory Group for authentication:

' Assume an Active Directory group exists named "MyApp Admins" with users in it.
If My.User.CurrentPrincipal.IsInRole("MyApp Admins") Then
   ' Do stuff
End If
link|flag
vote up 2 vote down

There's the CodeProject articles on the topic:

and on MSDN in the System.DirectoryServices documentation, there's

and then the two really good articles on new features in AD support with .NET 2.0 and 3.5:

link|flag

Your Answer

Get an OpenID
or

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