Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
4k views

Installing Visual Studio 2003 on Windows 7 64-bit

My team is currently supporting a 1.1 app and we are installing VS.NET 2003 on Windows 7. We haven't had any issues on the 32-bit machines, but FrontPage Server Extensions are failing to install on ...
5
votes
6answers
207 views

Ethics & Impersonation: Alternatives?

Have you ever troubleshoot for your customer and ask (or really want to) their credentials to check their settings if the fault is there? Our solution to this is to implement impersonation feature to ...
3
votes
1answer
77 views

Windows Service for launching and restarting a user process (with GUI)

I need a certain process to be constantly running in every user’s computer. If that .exe is killed, I must be able to restart it and send an alert. I immediately thought of building a Windows Service ...
3
votes
0answers
58 views

Launch an application from a windows 7 service

We are currently using a report printing application launched by a user-defined function located in a Firebird database which runs as a service. The UDF consists of a simple DLL that launches the ...
2
votes
3answers
1k views

How to get Alfresco login ticket without user password, but with impersonating user with user principal name (UPN)

I'm writing a DLL that has function for getting Alfresco login ticket without using user password, using only a user principal name (UPN). I’m calling alfresco REST API service /wcservice. I use NTLM ...
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 { ...
2
votes
1answer
94 views

How to impersonate a non-existent user

We have a 3rd party webservice used to authorise users. Primarily it takes the calling user, checks their identity, and returns a cookie for subsequent requests. I would like to unit test it, making ...
2
votes
2answers
320 views

Windows Service running as LocalSystem but needs to start a process as the currently logged on user

I'm running a windows service (written using .NET) as the user - LocalSystem. From the service, I need to start a process but as the currently logged on user. If I user Process.Start(process_name), ...
2
votes
2answers
784 views

.NET Impersonate and file upload issues

I have a webpage that allows a user to upload a file to a network share. When I run the webpage locally (within VS 2008) and try to upload the file, it works! However, when I deploy the website to the ...
2
votes
1answer
1k views

Why CreateProcessAsUser requires interactive window station on Vista/Windows 7?

I had to delve into this because the code that worked fine on Windows 2003/XP doesn't on Windows 7. Application launched by the use of CreateProcessAsUser fails with 0xc0000142 error code. The ...
1
vote
0answers
121 views

C# Impersonate Error

C# Impersonate Error Hello, wanted to create an application that would give me privileges to install applications with an user that has such accesses. It's important that the user with elevated ...
1
vote
1answer
132 views

msi file not running when called through wix customaction

I have the following in my wix project but the msi file (which is valid and runs from the command line) will not run either with or without the silent parameter <InstallExecuteSequence > ...
1
vote
1answer
147 views

Impersonation works with asmx but not with svc

My simple HelloWorld.asmx works fine and passes my credentials through to the database server, but my HelloWorld.svc tries to login with the web server credentials. I have <identity ...
1
vote
1answer
467 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
47 views

System.Diagnostics.Process not accepting credentials

I am trying to execute a batch file using the Process class. This code is in the middle of a larger section of code where I am using LogonUser() and WindowsIdentity.Impersonate() to impersonate the ...
0
votes
0answers
134 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
417 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
203 views

Calling web service with current users credentials from SharePoint

When I run this C# code from my vs2010 client it works authenticating as me. However if I deploy the code to a sharePoint page on a webserver I get an authentication error from the web service. I ...
0
votes
1answer
434 views

Access to the path denied, trying to access remote server file

I'm having a hard time trying to access a remote server file from other server with my asp .Net application (C#) hosted in it. The scenario is the following: I wrote an MVC web application that is ...
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
325 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 ...