↧
Answer by Kirk Liemohn for Impersonation and Delegation
For one of our applications where we did Impersonate() we found that we had to modify the local security policy for the application pool owner and add that account to the following policies/groups:Act...
View ArticleAnswer by Josh Painter for Impersonation and Delegation
It sounds like one of the computer is trusted for delegation by your Active Directory, but the other is not. If the app pool identity is Network Service, make sure the Computer Account is marked...
View ArticleAnswer by Jon for Impersonation and Delegation
If your testing with localhost as webserver and its working but when deployed you receive errors you could be running into the double-hop issue....outlined in this blog post
View ArticleImpersonation and Delegation
I am using impersonation is used to access file on UNC share as below. var ctx = ((WindowsIdentity)HttpContext.Current.User.Identity).Impersonate(); string level =...
View Article