hi .net gurus
here is my question " how does impersonate in asp.net works?
explain with good example"
Answers were Sorted based on User's Feedback
Answer / karthika.s
At times users access a resource as though they were someone
else. This is known as impersonation.In ASP.NET, when
impersonation is turned off, the resources can be accessed
using a "local system process" account. When impersonation
is turned on, ASP.NET executes every resource using the
account of a specified user who is authenticated when the
user makes the request
It is easy to implement impersonation in ASP.Net. You can
use the Web.config file that is found in the root directory
of the application to enable or disable impersonation for a
particular application.
The application can also use the authenticated identity that
is received from the IIS if you enable impersonation. If you
are going to implement impersonation for an ASP.Net
application you can do so in three ways.
Just open up the web.config file, found in the root
directory of the application. By default impersonation is
disabled and you can find this with the line,
<identity impersonate="false" />
With the above settings the application worker process
account for the ASP.Net application is used. You can enable
impersonation by,
<identity impersonate="true" />
With this setting an authenticated user account or the
anonymous internet user account is used. If you want to
enable impersonation for a particular user account then you
have to use the following syntax.
<identity impersonate="true" userName="user_name"
password="user_password" />
By mentioning the user like this ASP.Net uses that account
specifically to run the application.
| Is This Answer Correct ? | 17 Yes | 0 No |
What is the use of worker process in asp.net?
Differences between session state and Application state?
What is the web.config file in asp?
What does asp stand for in asp.net?
Will the asp.net validators run in server side or client side?
How do you perform validations ?
Where does the Web page belong in the .NET Framework class hierarchy?
What is the concept of postback in asp.net?
my name is sumeetha i am using google gears in .net.what's the problem is my server is in another place. i am working here when i entered the values in textboxes and press enter then it should store in database(sql server) which is in another system.when that sever system is shutdown then the values which i submit should store in my system and after system opened it should automatically store the values in the system can any one plz urgent suggest answer for this question?
What is the difference between localization and globalization?
Life cycle of ASP.NET page when a request is made ?
What is the behavior of a Web browser when it receives an invalid element?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)