Home
IPhone SMS To Gmail
Consulting
Security Alerts
Blog
Software
Projects
Links
About
Contact
Blog
FriendFeed
Facebook
Flickr
Twitter
Toluu
Last.fm
Picasa
LinkedIn
|
<< Back To All Blogs
Impersonating a user in ASP.NET
Wednesday, July 1st, 2009
It has been a while since I've had to do ASP.NET Impersonation, but I was presented with a situation today in which it was required. I figured I would give a few quick tips for doing so, how to impersonate, and how you can debug some of the issues during the process.
In ASP.NET Impersonation, it is done at the entire application level. You simply have to add an entry under the system.web entry in web.config to impersonate a user for the running process.
An example would be like the following:
<system.web>
<identity impersonate="true" userName="DOMAINUser" password="password" />
...
</system.web>
Note: Because the entire process runs as this user, you may get an error stating that the user does not have permissions to access C:\Windows\Microsoft.NET\Framework\VX.X.X\Temporary ASP.NET Files. To fix this issue, simply go to the stated path, right click to get to properties, and add the user to the directory permissions with write permissions.
To confirm that the application is running under the context of the user you have provided, you can use the following code block to determine if it is indeed running under the user:
string username = System.Security.Principal.WindowsIdentity.GetCurrent().Name
Pretty basic for the most part, but just wanted to share because it always takes me a minute to remember the process.
Impersonatin' Tom Out.
Tags
CSharp
ASP.NET
Related Blogs
Resizing Images in C#
Reading IPhone Text Messages using C# and SQLite
Validate a Windows Username and Password against Active Directory
Creating High Quality Images with C# and GDI
Comments
Currently no comments.
Add A Comment
Name:
URL:
Email Address: (not public, used to send notifications on further comments)
Comments:
Please enter the text from the image:

|