5

用户触发事件,因此线程在所述用户的上下文中。我遍历所有连接的用户并希望向他们发送此事件,但我想使用经典授权来确定他们是否应该接收该事件。问题是线程主体等在触发事件的用户的上下文中。

我正在研究模拟线程,然后进行授权。我在上面找到了这篇文章

http://msdn.microsoft.com/en-us/library/ff647248.aspx#ImpersonationDelegation5

using System.Security.Principal;
…
WindowsIdentity wi = new WindowsIdentity(userName@fullyqualifieddomainName);
WindowsImpersonationContext ctx = null;

try
{
  ctx = wi.Impersonate();
  // Thread is now impersonating you can call the backend operations here...

catch
{
  // Prevent exceptions propagating.
}
finally
{
  // Ensure impersonation is reverted
  ctx.Undo();
}

ctx = wi.Impersonate();线程仍在调用用户的上下文中之后,我做错了什么?

更新 我想以其他用户身份运行此代码

provider = AuthorizationFactory.GetAuthorizationProvider();
provider.Authorize(Thread.CurrentPrincipal, Rule)

我做了一个小博文,涵盖了所需的步骤 http://andersmalmgren.com/2014/06/12/client-server-event-aggregation-with-role-authorization/

4

1 回答 1

0

provider.Authorize(principal, context)System.Security.Principal.IPrincipal作为它的第一个参数(参见msdn)。为什么不创建一个System.Security.Principal.WindowsPrincipal-instance(它采用一个System.Security.Principal.WindowsIdentity您已经拥有的-instance 作为ctor 参数)并将其用作参数?

否则:你知道CurrentPrincipal线程有一个setter吗?请参阅其他问题/答案

于 2014-06-12T09:34:57.467 回答