Tagged Questions
2
votes
3answers
1k views
Dynamically Impersonate a remote user - c# and asp.net
I want to impersonate a remote user dynamically for executing some part of code. I searchd a lot in net and got some codes to impersonate. The code to impersonate is shown below
namespace Tools
{
...
1
vote
1answer
468 views
what is impersonate in asp.net web.config?
Please guide me. if i gave anonymous access to site in iis and if i gave impersonate = true in its web.config then what should happen?
0
votes
0answers
137 views
Access Denied for Process.Start() when <identity impersonate=“true” />
My head is flat from banging my head with this issue.
I have set <identity impersonate="true" /> for AD things but when I re-run the app, I get "Accesss Denied" error when Process.Start() is ...
0
votes
1answer
426 views
Could not load file or assembly 'app_code' or one of its dependencies when impersonating
I made a web site with VS2010 and publish it on IIS7. It runs fine but it can't connect to an OLAP server so I had to setup impersonation. Impersonation runs fine in debug on my dev machine, but when ...
0
votes
1answer
43 views
What is the best way to secure your ID(in connection string) & retrieve it later?
I'm working in a setup file(web setup) installation, and during the installation I provide the username & the password(for impersonating). but my question is that I want to use this user & ...
0
votes
1answer
282 views
Windows Authentication - How to impersonate a user while developing locally?
I'm inherited an ASP.NET website project where they have used Windows Authentication. The "admin" account that they are testing are on a separate network, and I need to impersonate that account (there ...
0
votes
1answer
326 views
WCF service hosted on IIS and client website on IIS
Here's the desired setup:
Service with wsHttpBinding is on IIS 6 on Machine 1 behind the firewall.
Client is front end website on IIS 6 on Machine 2 on a DMZ.
We are currently able to authenticate ...