0
votes
2answers
442 views
Using advapi32.dll:LogonUserA() to impersonate a remote machine’s local user
I need to be able to run RegLoadKey() on a remote machine, and it may be that my machine and the remote machine are not in the same domain. If they are, the below code works OK and …
0
votes
5answers
108 views
+100
Response.TransmitFile() with UNC share (ASP.NET)
In the comments of this page:
http://msdn.microsoft.com/en-us/library/12s31dhy.aspx
..it says that TransmitFile() cannot be used with UNC shares. As far as I can tell, this is th …
2
votes
2answers
166 views
How to tell what account my webservice is running under in Visual Studio 2005
I'm going a little nuts trying to understand the doc on impersonation and delegation and the question has come up what account my webservice is running under.
I am logged as myDo …
1
vote
1answer
521 views
Exchange Web Services, try to use ExchangeImpersonationType …
I am trying to use EWS, first time trying to use the ExchangeServiceBinding. The code I am using is below:
_service = new ExchangeServiceBinding();
//_service.Credentials = new Ne …
0
votes
2answers
55 views
Why is a published website referencing my machine?
I have a website that I publish in Visual Studio 2008 and then send off to other people. One of the pages needs to alter a few configuration files, so an action is executed using W …
0
votes
0answers
26 views
WCF Delete 401 - Unauthorized: Access is denied due to invalid credentials.
I have a WCF REST service that among others saves/deletes files and folders on the server.
To be able to access data on the server I impersonate a user that has credential for writ …
2
votes
4answers
396 views
Is it possible to duplicate the following credential process in VB.NET?
Solution (kinda):
Turns out this impersonation with .NET's security only allows application-level access. Since the COM object is at the system level, the impersonated user still …
0
votes
4answers
289 views
How to get Windows user name when identity impersonate=”true” in asp.net?
I'm creating an intranet asp.net mvc application that everyone in the company should have access to. I need to run the website impersonated for database access etc., but I want to …
1
vote
1answer
45 views
How to call a WCF service from a unit test as an anonymous identity?
I've a SecurityService that has a AutoLogin method, that uses the ServiceSecurityContext to find out which windows identity is calling and then tries to find the related user accou …
0
votes
1answer
384 views
C# - Get ASPNET WindowsIdentity
Hello,
I'd like to give the ASPNET user Full Control over several files, but it looks like I'll need to get the account's token first. Does anyone know how to impersonate the ASP …
0
votes
0answers
55 views
Problem with impersonating a specific user in WCF service
I am having a WCF service hosted in IIS on WindowsServer 2008. This service needs to write to a shared folder present on another machine(Windows XP). The shared folder has write pe …
0
votes
4answers
258 views
Open a shared file under another user and domain?
I have a C# console application that needs to read a shared file on a machine in another domain.
When the application tries to access the file an exception occurs as the local user …
1
vote
0answers
36 views
Impersonating the current computer through WindowsIdentity
I am trying to get the WindowsIdentity for the computer account the current user is logged into.
Currently I am using the following code to get the group membership of the current …
0
votes
1answer
207 views
How to use WindowsIdentity.Impersonate to get the user’s login, rather than the ASPNET account
I have a web-app that will reside on a production server where I want to get the user's logged in computer name, circa
DOMAINNAME/USERNAME
Many people have told me that I mu …
0
votes
1answer
59 views
WNetAddConnection2 in Windows 7 with Impersonation and no Error Code
I'm doing some crazy impersonation stuff to get around UAC dialogs in Windows 7 so the user does not have to interact with the UI (I have the admin creds of course).
I have a pro …
