gpt4 book ai didi

reporting-services - 如何将基本身份验证质询转发到报告管理器 url

转载 作者:行者123 更新时间:2023-12-03 11:02:52 24 4
gpt4 key购买 nike

*环境的细节在底部描述。

我正在尝试为报告服务构建身份验证解决方案。

在线客户应该使用我们现有的客户数据库进行身份验证,而本地管理用户可以使用简单的基本身份验证。

我已对 SSRS 进行了安全扩展使用codeplex示例和我用来发出基本挑战的方式如下

public void GetUserInfo(out IIdentity userIdentity, out IntPtr userId)
{
if (HttpContext.Current != null && HttpContext.Current.User != null)
userIdentity = HttpContext.Current.User.Identity;
else
{
HttpContext.Current.Response
.AddHeader("WWW-Authenticate", "Basic realm=\"ReportServer\"");
HttpContext.Current.Response.Status = "401 Unauthorized";
HttpContext.Current.Response.Flush();
HttpContext.Current.Response.Close();
userIdentity = new GenericIdentity("not authorized");
}

userId = IntPtr.Zero;
}

这样当一个用户还没有通过 LogonUser方法(即直接 url 访问、投标报告部署,而不是常规用户应用程序)受到基本登录/密码弹出窗口的挑战。为了支持这一点,我制作了一个 httpmodule 如下
void IHttpModule.Init(HttpApplication context)
{
context.AuthenticateRequest += CustomAuthenticateRequest;
}

void CustomAuthenticateRequest(object sender, EventArgs e)
{
var app = sender as HttpApplication;

if (app == null) return;

var basicAuth = app.Context.Request.Headers["Authorization"];

if (!string.IsNullOrEmpty(basicAuth))
{
var loginpass = Encoding.Default.GetString(
Convert.FromBase64String(basicAuth.Replace("Basic ", ""))).Split(':');
if (loginpass.Length == 2
&& loginpass[0] == adminUser
&& loginpass[1] == adminPass)
{
app.Context.User = new GenericPrincipal(
new GenericIdentity(adminUser), null);
}
}
}

这在访问 /ReportServer 时工作正常URL,我受到挑战,输入硬编码的管理员登录名/密码并登录。

问题是访问 /Reports 时我明白了

System.Net.WebException: The request failed with HTTP status 401: Unauthorized



我想知道如何将登录/通过挑战一直传递到 /Reports

我正在运行 SqlServer 2012 和 Reporting Services 2012,但内部工作并没有从 SSRS 2008-R2 改变。

在我的 web.config我有
<authentication mode="None" />
<identity impersonate="false" />, and the entry for the httpmodule

rssrvpolicy.config我的 httpmodule 的代码组使用 FullTrust

rsreportserver.config我有
    <AuthenticationTypes>
<Custom/>
</AuthenticationTypes>, and the entry for the security extension

我没有 SSL已配置,但绑定(bind)是默认值

最佳答案

从错误消息来看,似乎是在呈现报表管理器的 UI 时发生了身份验证错误。请转到文件夹 c:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\ReportManager\,找到 web.config 文件,并应用以下更改。

<authentication mode="None" />
<identity impersonate="false" />, and the entry for the httpmodule

关于reporting-services - 如何将基本身份验证质询转发到报告管理器 url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11193396/

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