all groups > asp.net security > august 2006 >
You're in the

asp.net security

group:

Active Directory Access from a Web App



Active Directory Access from a Web App Jon Schneider
8/28/2006 7:03:01 AM
asp.net security: I am trying to access employee information from Active Directory from my ASP
..Net web application. I have tried several different methods and each fail.

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
Handles Me.Load

Dim user As MembershipUser = Membership.GetUser(User.Identity.Name)

userName.Text = user.UserName
emailAddress.Text = user.Email

End Sub

This method returns this error:

Object reference not set to an instance of an object.
at _Default.Page_Load(Object sender, EventArgs e)

The other method I was investigating is using WindowsIdentity. I can access
the SID but I do not know how to utilize the DirectoryEntry, or what to
include to obtain the users email address.

Any help would be greatly appreciated.

--
Software Development Manager
GRG Inc.
Maitland, Florida 32751
Re: Active Directory Access from a Web App Joe Kaplan
8/28/2006 9:16:37 AM
If you want to use LDAP/System.DirectoryServices directly, I wrote a whole
book about that stuff that might be useful to you (see link in the
signature). There's a free chapter and code samples available for download
if you want to try before you buy. :)

Essentially, if you have the SID of the user, you can create a binding
string for the DirectoryEntry like this:

LDAP://<SID=S-1-5-20-xxxxx>

Where the SID value shown there is the value you get from calling ToString
on the SecurityIdentifier object. Once you have that, then getting the
user's email is easy:

string mail = (string) entry.Properties["mail"].Value;

The main trick may be figuring out how to set up the security context
properly in ASP.NET to access the directory. This is covered in detail in
ch 8, and I've posted on numerous approaches to this problem in these
newsgroups over the years the Google will find for you.

Best of luck,

Joe K.

--
Joe Kaplan-MS MVP Directory Services Programming
Co-author of "The .NET Developer's Guide to Directory Services Programming"
http://www.directoryprogramming.net
--
[quoted text, click to view]

AddThis Social Bookmark Button