Question

Have ASP.NET 3.5 web application (pages/services) running. They are configured to impersonate using windows authentication. What is the most efficient (quickest) way to get the 3-4 properties from Active Directory for the current user? Most efficient could be the fastest synchronous or an async model that would work.

Note: I am aware of aware of using the DirectorySearcher, however, was wondering if there was a more efficient way since I already have the user context (by way of impersonation).

TIA!!

No correct solution

OTHER TIPS

With impersonation you can get the users domain and samaccountname. As far as I know, you still would need to use a directory searcher against the samaccountname to lookup the properties - (&(objectcategory=person)(samaccountname=x))

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top