hi .net gurus

here is my question " how does impersonate in asp.net works?
explain with good example"

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Differentiate between file-based dependency and key-based dependency.

613


What is difference between Server.Transfer and Response.Redirect in ASP.NET?

649


How you can add an event handler?

645


In a webservice, need to display 10 rows from a table. Which is the best choice among datareader or dataset?

761


How you can return View from ASP.NET Web API method?

646






How do I know asp.net mvc version? : Asp.Net MVC

599


What is the difference between mvc (model-view-controller) and mvp (model-view-presenter)? : asp.net mvc

638


How do we access view state value of this page in the next page?

734


What are the differnt types of handler in ASP.NET?

629


What are the different authentication modes in asp.net?

615


What are the contents of cookie?

672


What is the adavantage of using ASP.NET routing?

734


What is data grid view in asp.net?

618


How is application management and maintenance improved in asp.net 2.0?

626


WSDL means?

765