gpt4 book ai didi

sql-server - OWIN 无效的 URI : The Uri String is too long

转载 作者:行者123 更新时间:2023-12-03 14:50:49 25 4
gpt4 key购买 nike

我在指向 3 个 SQL 数据库的服务器 (IIS) 上托管了一个 MVC 应用程序。这几个月来一直没有问题。

我只需要更改所有 3 个 SQL 数据库的连接字符串以指向新数据库。

现在,当我尝试登录时,出现以下错误..

enter image description here

连接字符串使用 Windows 身份验证,并且此帐户在 AppPool 中设置。我还手动尝试使用该帐户连接到每个数据库实例,这工作正常。我开始认为变化是 SQL 连接只是一个红鲱鱼。

就错误消息而言,我完全理解错误是什么我只是不确定为什么会抛出它。我唯一能想到的是我处于某种附加 URL 的重定向循环中。

这绝对感觉像是一个 IIS 问题,但我无法解决它。

有没有人在 OWIN 之前遇到过这个问题,或者可以就可能诊断问题的调试步骤提出建议?

Startup.cs

public partial class Startup
{
private static bool IsAjaxRequest(IOwinRequest request)
{
IReadableStringCollection query = request.Query;
if ((query != null) && (query["X-Requested-With"] == "XMLHttpRequest"))
{
return true;
}
IHeaderDictionary headers = request.Headers;
return ((headers != null) && (headers["X-Requested-With"] == "XMLHttpRequest"));
}


public void ConfigureAuth(IAppBuilder app)
{
// Configure the db context, user manager and role manager to use a single instance per request
app.CreatePerOwinContext(ParentDbContext.Create);
app.CreatePerOwinContext<ApplicationUserManager>(ApplicationUserManager.Create);
app.CreatePerOwinContext<ApplicationRoleManager>(ApplicationRoleManager.Create);
app.CreatePerOwinContext<ApplicationSignInManager>(ApplicationSignInManager.Create);
app.CreatePerOwinContext(PrincipalManager.Create);

// Enable the application to use a cookie to store information for the signed in user
// and to use a cookie to temporarily store information about a user logging in with a third party login provider
// Configure the sign in cookie
app.UseCookieAuthentication(new CookieAuthenticationOptions
{
AuthenticationType = DefaultAuthenticationTypes.ApplicationCookie,
LoginPath = new PathString("/Account/Login"),
Provider = new CookieAuthenticationProvider
{
// Enables the application to validate the security stamp when the user logs in.
// This is a security feature which is used when you change a password or add an external login to your account.
OnValidateIdentity =
SecurityStampValidator.OnValidateIdentity<ApplicationUserManager, ApplicationUser, Guid>(
TimeSpan.FromMinutes(int.Parse(WebConfigurationManager.AppSettings["RefreshInterval"])),
(manager, user) => manager.GenerateUserIdentityAsync(user),
claim => new Guid(claim.GetUserId())),
OnApplyRedirect = ctx =>
{
if (!IsAjaxRequest(ctx.Request))
{
ctx.Response.Redirect(ctx.RedirectUri);
}
}
}
});

}
}

最佳答案

经过几个小时的调查,我最终发现了这个问题。

问题是为用户添加的声明数量。一旦我们减少了 claim 的数量,它就会重新开始工作。

关于sql-server - OWIN 无效的 URI : The Uri String is too long,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33014218/

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