Tagged Questions
The security-context tag has no wiki summary.
5
votes
2answers
953 views
How do I start a thread in a different security context?
How to start a thread in the security context of a different user? When a process starts a thread normally the security context is also passed but how to launch a thread in a different security ...
4
votes
3answers
231 views
Determining the current security checks being made (SQL Server)
One thing that I've always hated more than just about anything in MS SQL Server is the way that security works. The security context constantly switches if you look at the server funny and it's often ...
1
vote
0answers
45 views
C# SeviceSecurityContext.Current is not preseved QueueUserWorkItem
When delegating a thread using ThreadPool.QueueuserWorkItem the ServiceSecurityContext.Current does not persist (returns null). Several of the methods I am calling require that the security context ...
1
vote
3answers
7k views
Run new process as different user in vb.net
I'm currently using a homegrown method to run a process as a different user in Vista, and I can't escape the feeling that's it hack-ish and less than ideal (in addition to the fact that it craps out ...
0
votes
1answer
269 views
Declaring Spring Bean in Parent Context vs Child Context
I have a spring bean (dao) object which I instantiate in my ServletContext via the following xml:
<bean id="userDao" class="com.company.dao.impl.UserDaoImpl">
<property ...
0
votes
0answers
51 views
Process class does not get securityContext in Impersonated Region
I made an Impersonation class similar to this:
http://www.codeproject.com/KB/cs/cpimpersonation1.aspx
The thing is, when I run the Process (System.Diagnostics) class it runs with the main thread ...
0
votes
0answers
182 views
Using Restful SecurityContext to invoke other services?
I have two pieces of code I am trying to combine (or at least the functionality). The first is a restful service... like this
@Post
@Path("TestService")
@Consumes("text/xml")
@Produces("text/xml")
...
0
votes
0answers
30 views
Java applet load speed inconsistency
I have a java applet embedded in an HTML page. When I open the HTML page in IE from the local filesystem, it is ready instantly. If I host that same HTML page (and applet) in a local webserver, it ...
0
votes
2answers
231 views
CreateProcessAsUser not setting the user correctly
Calling a GUI app using
[DllImport(
"advapi32.dll",
EntryPoint = "CreateProcessAsUser",
SetLastError = true,
CharSet = CharSet.Ansi,
CallingConvention = ...
0
votes
2answers
782 views
Service not able to access a mapped drive
I have read in many forums that mapped drives are not accessible from a service as no user is logged on.
Question 1) I tried making my service as a log on - as some account and i had my network drive ...
0
votes
0answers
197 views
Any way to change a running process' current security context in .NET?
For debugging purposes only, I'd like to change the security context or token of a running process. How can I do this?
I don't want to elevate privileges, but change the process to use a different ...