0

我创建了一个 ADFS windows NT 启用 tokenapp 配置 IIS 7 以在身份验证中启用 windows NT 令牌并将 URL 回复为https://adfsweb.treyresearch.net/tokenapp

我将此应用程序作为基于 Windows NT 令牌的应用程序添加到 adfsresource 应用程序中。

使用此 web.config 文件 (http://blogs.technet.com/b/adfs_documentation/archive/2006/08/03/444865.aspx#DSDOC_BKMK_667328988_f5db_446a_9261_00b4)

default.aspx.cs 如下。

using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Security.Principal;

public partial class _Default : System.Web.UI.Page 
{
    protected void Page_Load(object sender, EventArgs e)
    {
        Label1.Text = HttpContext.Current.User.Identity.Name;
        WindowsIdentity i = (WindowsIdentity)HttpContext.Current.User.Identity;

        IdentityReferenceCollection irc = i.Groups;

        foreach (IdentityReference ir in irc)
        {
            Label2.Text += ir.Translate(typeof(NTAccount)).Value.ToString() + "; ";

        }

    }
}

只要我使用 treyresearch,net 用户从 adfsresources 域登录,它就可以工作。

如果我使用来自 adatum.com 域的这个 tokenappp url,我会收到一个错误,并且在 adfsresource 服务器的事件日志中我有这个错误:

Event code: 4011 
Event message: An unhandled access exception has occurred. 
Event time: 11/29/2011 7:20:26 PM 
Event time (UTC): 11/30/2011 1:20:26 AM 
Event ID: ac49318023ee4ba4ab7ab6e0bca78522 
Event sequence: 5 
Event occurrence: 2 
Event detail code: 0 

Application information: 
    Application domain: /LM/W3SVC/1/ROOT/adfs-1-129670890061718750 
    Trust level: Full 
    Application Virtual Path: /adfs 
    Application Path: C:\Windows\SystemData\ADFS\sts\ 
    Machine name: ADFSRESOURCE 

Process information: 
    Process ID: 1892 
    Process name: w3wp.exe 
    Account name: NT AUTHORITY\NETWORK SERVICE 

Request information: 
    Request URL: https://adfsresource.treyresearch.net:443/adfs/ls/clientlogon.aspx 
    Request path: /adfs/ls/clientlogon.aspx 
    User host address: 192.168.10.133 
    User:  
    Is authenticated: False 
    Authentication Type:  
    Thread account name: NT AUTHORITY\NETWORK SERVICE 

Custom event details: 

这是否意味着我需要在 ADFS 信任之上获得 Windows 信任才能将 Windows NT 令牌用于远程域?如果是这样,那么拥有 ADFS 信任没有意义,如果我还需要拥有 Windows 域信任。

我可以让我的声明应用程序从远程域正常工作,但是在所有信任策略导出导入完成后,我添加了这个新的令牌应用程序http://technet.microsoft.com/en-us/library/cc731103%28WS.10% 29.aspx

我还关注并验证了以下信息 http://technet.microsoft.com/en-us/library/cc734929%28WS.10%29.aspx

4

1 回答 1

1

提醒一句——你引用的那篇文章写于 2006 年,讨论了 Web 代理——换句话说,它是 ADFS 1。

ADFS 2 几乎是一个新产品。2010年问世,不再有代理的概念。

Windows Server 2008 标配的 ADFS“功能”是 1 而不是 2。您必须下载 2 并安装它。

附录 A:查看 AD FS 2.0 要求指出“AD FS 2.0 不支持基于 Windows NT 令牌的应用程序”。

但是,它确实支持 C2WTS(对 Windows 令牌服务的声明)。

于 2011-11-30T02:06:59.423 回答