我有一個Owin Identity應用程序,並在虛擬目錄中設置了另一個應用程序。該虛擬應用程序使用傳統的表單身份驗證進行設置,並且兩個Web.configs都具有相同的<machineKey>
集合。我可以使用Identity應用程序登錄,並可以查看生成的cookie。但是,當我嘗試訪問虛擬應用程序時,它說我沒有通過身份驗證。在表單身份驗證中使用ASP.Net Identity 2 Cookie
在標識的應用程序,我有以下設置:
app.UseCookieAuthentication(new CookieAuthenticationOptions
{
AuthenticationType = DefaultAuthenticationTypes.ApplicationCookie,
LoginPath = new PathString("/login.aspx"),
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>(
validateInterval: TimeSpan.FromMinutes(30),
regenerateIdentity: (manager, user) => user.GenerateUserIdentityAsync(manager))
}
});
和虛擬應用程序,我有授權的設置如下:
<authorization>
<deny users="?" />
</authorization>
任何指針,以獲得虛擬應用程序識別由Identity設置的Cookie?
Badri,這個解決方案的工作很完美。非常感謝你的回答。 – ern 2014-11-23 21:09:47