Вы можете использовать WIF в MVC без STS.
Я использовал шаблон MVC2 по умолчанию, но он должен работать и с MVC 3.
Вам необходимо:
1- Подключите WIF SessionAuthenticationModule (web.config)
< add name="SessionAuthenticationModule" type="Microsoft.IdentityModel.Web.SessionAuthenticationModule, Microsoft.IdentityModel, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
2 - Везде, где вы аутентифицируете своих пользователей, создайте ClaimsPrincipal , добавьте все необходимые утверждения и затем создайте SessionSecurityToken .Это LogOn Действие в AccountController , созданном MVC:
[HttpPost]
public ActionResult LogOn(LogOnModel model, string returnUrl)
{
if (ModelState.IsValid)
{
if (MembershipService.ValidateUser(model.UserName, model.Password))
{
var cp = new ClaimsPrincipal();
cp.Identities.Add(new ClaimsIdentity());
IClaimsIdentity ci = (cp.Identity as IClaimsIdentity);
ci.Claims.Add(new Claim(ClaimTypes.Name, model.UserName));
SessionSecurityToken sst = FederatedAuthentication
.SessionAuthenticationModule
.CreateSessionSecurityToken(cp,
"MVC Test",
DateTime.
UtcNow,
DateTime.
UtcNow.
AddHours
(1),
true);
FederatedAuthentication.SessionAuthenticationModule.CookieHandler.RequireSsl = false;
FederatedAuthentication.SessionAuthenticationModule.AuthenticateSessionSecurityToken(sst, true);
//FormsService.SignIn(model.UserName, model.RememberMe);
if (!String.IsNullOrEmpty(returnUrl))
{
return Redirect(returnUrl);
}
else
{
return RedirectToAction("Index", "Home");
}
}
else
{
ModelState.AddModelError("", "The user name or password provided is incorrect.");
}
}
// If we got this far, something failed, redisplay form
return View(model);
}
Я только что добавил необходимыелинии и оставил все остальное так же.Поэтому может потребоваться некоторый рефакторинг.
С этого момента ваше приложение теперь получит ClaimsPrincipal .Все автоматически обрабатывается WIF.
CookieHandler.RequiresSsl = false только потому, что это компьютер разработчика, и я не развертываю на IIS.Это также может быть определено в конфигурации.