gpt4 book ai didi

c# - 模拟、Active Directory 和 "user does not have authority to xxxx"问题

转载 作者:太空狗 更新时间:2023-10-29 23:46:48 26 4
gpt4 key购买 nike

我有 2 个 ASP.NET MVC 3 应用程序。我通过 web.config 使用模拟来允许我查询 Active Directory 以获取有关用户的详细信息。该应用程序使用 Windows 身份验证并且不允许匿名用户。一个应用程序是用户执行任务的主要应用程序。另一个允许用户将其他用户设置为在应用程序 1 中看起来像他们。

测试用户收到以下错误:

SQL1092N  "<DOMAIN ID>" does not have the authority to perform the requested command.

这发生在我从主应用程序向辅助应用程序发送 Web 请求之后。为了让它工作,我必须让请求模拟实际用户,而不是应用程序用于模拟的身份。这实际上是我发布并回答的 SO 问题。就在这里:How do I call an MVC Action via a WebRequest and validate the request through Active Directory?

在该代码的末尾,我调用:

impersonationContext.Undo();

正是在这个网络请求发生之后,主应用程序尝试访问数据库,现在上面的调用似乎已经撤销了应用程序的模拟,因此用户尝试做任何打开数据库连接的尝试都失败了。至少,这是我经过一天的抨击之后的工作理论。

我的问题是,如何让应用程序的模拟恢复到 web.config 中的用户?或者,在发出我的 Web 请求时,有没有办法确保模拟上下文仅适用于该请求?

所有这一切的重点是第二个应用程序有自己的 sql server 数据库。主要应用程序使用 DB2。我想编写一次数据库访问代码,但在两个应用程序中都使用它。目前这就是我所做的,但我依赖网络请求获取数据的方法可能不是最好的方法。

我愿意接受任何想法、评论、建议和/或批评。我应该如何处理这个问题?

最佳答案

好吧……我的理论是在发出 Web 请求时 IPrincipal 上下文发生了变化,事实证明这是正确的,这使得这个修复变得非常容易。最好的部分是,我可以继续使用我构建的 api 来发出此请求,而无需复制 Sql Server Entity Framework 部分。

我对我的 api 库进行了以下调用:

            proxyRequestResultDetails = ProxyApiWrapper.GetProxies(
adUserInfo.AssociateId,
context.User);

此代码由授权过滤器属性调用。方法原型(prototype)看起来像

public void OnAuthorization(AuthorizationContext filterContext)     

在内部,该调用使 GetProxies 方法跟随调用:

        public static StreamReader GetWebRequestStream(
string url,
string contentType,
bool useDefaultCredentials,
IPrincipal user)
{

var impersonationContext = ((WindowsIdentity)user.Identity).Impersonate();
var request = WebRequest.Create(url);

try
{
request.ContentType = contentType;
//request.ImpersonationLevel = System.Security.Principal.TokenImpersonationLevel.Impersonation;
//request.UseDefaultCredentials = useDefaultCredentials;
//IWebProxy p = new WebProxy();
//request.Proxy = p.
request.AuthenticationLevel = System.Net.Security.AuthenticationLevel.MutualAuthRequested;
request.Credentials = System.Net.CredentialCache.DefaultNetworkCredentials;
var response = (HttpWebResponse)request.GetResponse();
return new StreamReader(response.GetResponseStream());
}
catch (Exception e)
{
impersonationContext.Undo();
throw e;
}
finally
{
impersonationContext.Undo();
}

}

当调用方法返回时,用户的身份不再是应用程序设置的身份模仿。修复非常简单:

            //Track current identity before proxy call
IPrincipal user = context.User;
proxyRequestResultDetails = ProxyApiWrapper.GetProxies(
adUserInfo.AssociateId,
context.User);

//Undo any impersonating done in the GetProxies call
context.User = user;

2行代码解决了12个小时的头痛。它本来会更糟。无论如何。感谢您成为共鸣板。我试过了与鸭子进行了这种转换,但鸭子感到困惑。

关于c# - 模拟、Active Directory 和 "user does not have authority to xxxx"问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14648437/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com