我正在运行Win 7,IIS 7.0,VS2012 我创建了asp.mvc4网络应用程序 我在一个单独的VM上有ADFS2.0
使用VS 2012中的身份和访问工具
我选择使用业务标识提供程序(例如ADFS2)并输入STS元数据文档的URL。
https://server.local/federationmetadata/2007-06/federationmetadata.xml
编辑了网络配置
<system.web>
...
<httpModules>
...
<remove name="FormsAuthentication" />
</httpModules>
</system.web>
和这个
<system.webServer>
...
<modules>
...
<remove name="FormsAuthentication" />
</modules>
</system.webServer>
还检查了项目的Windows身份验证已被禁用
网站重定向到这样的网址http:// localhost /WebSite/login.aspx?ReturnUrl=%2fWebSite%2f,其中包含“无法找到资源”错误。
我还有什么可以帮助你做这项工作?
Microsoft doco是轻量级http://blogs.msdn.com/b/vbertocci/archive/2012/03/15/windows-identity-foundation-tools-for-visual-studio-11-part-iii-connecting-with-a-business-sts-e-g-adfs2.aspx
我已经遇到过与本地开发STS MS Identity and Access Tool MVC 4
类似的问题答案 0 :(得分:6)
好的,这花了我几天的时间来解决,但这些是我为了让它运行而做的事情。还有很多工作要做。
<强>先决条件:强>
在开发工作站上
在您的MVC4项目中
将以下代码添加到项目中
using System;
using System.IdentityModel.Services;
namespace NAMESPACE
{
public class FixedWsFederationAuthenticationModule : WSFederationAuthenticationModule
{
public override void RedirectToIdentityProvider(string uniqueId, string returnUrl, bool persist)
{
//This corrects WIF error ID3206 "A SignInResponse message may only redirect within the current web application:"
//First Check if the request url doesn't end with a "/"
if (!returnUrl.EndsWith("/"))
{
//Compare if Request Url +"/" is equal to the Realm, so only root access is corrected
//https://localhost/AppName plus "/" is equal to https://localhost/AppName/
//This is to avoid MVC urls
if (String.Compare(System.Web.HttpContext.Current.Request.Url.AbsoluteUri + "/", base.Realm, StringComparison.InvariantCultureIgnoreCase) == 0)
{
//Add the trailing slash
returnUrl += "/";
}
}
base.RedirectToIdentityProvider(uniqueId, returnUrl, persist);
}
}
}
在ADFS 2.0服务器上
添加一些自定义规则
MVC4需要这些规则才能生成可用的ClaimsPrincipal
在Name属性上添加传递规则。
这两个自定义规则
=> issue(Type = "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier", Value = "true");
=> issue(Type = "http://schemas.microsoft.com/accesscontrolservice/2010/07/claims/identityprovider", Value = "true");