top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How would you enable impersonation in the web.config file?

+1 vote
330 views
How would you enable impersonation in the web.config file?
posted Jan 9, 2015 by Sathyasree

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+2 votes

In order to enable the impersonation in the web.confing file, take the following steps:

- Include the <identity> element in the web.config file. 
- Set the impersonate attribute to true as shown below:
  <identity impersonate = "true" />
answer Jan 12, 2015 by Shivaranjini
...