G
Guest
From a particular WindowsIdentity I need to create a Kerberos token (WSE 2.0)
for a SOAP message:
impersonatedUser = windowsIdentity.Impersonate();
// create Kerberos token
impersonatedUser.Undo();
How can I make sure that other threads does not do stuff while I'm
impersonating on this particular thread? Can I get a list of threads and
pause them all?
Niels
for a SOAP message:
impersonatedUser = windowsIdentity.Impersonate();
// create Kerberos token
impersonatedUser.Undo();
How can I make sure that other threads does not do stuff while I'm
impersonating on this particular thread? Can I get a list of threads and
pause them all?
Niels