1

我正在开发一个控制台应用程序,作为通过 AD FS 进行身份验证的概念证明。我到目前为止的代码是

using System.IdentityModel.Protocols.WSTrust;
using System.IdentityModel.Tokens;
using System.IO;
using System.Linq;
using System.Security.Claims;
using System.ServiceModel;
using System.ServiceModel.Security;
using System.Xml;
using Thinktecture.IdentityModel.WSTrust;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            var factory = new WSTrustChannelFactory(new WindowsWSTrustBinding(SecurityMode.TransportWithMessageCredential), new EndpointAddress("https://dcadfs.security.net/adfs/services/trust/13/windowsmixed"))
            {
                TrustVersion = TrustVersion.WSTrust13
            };

            var rst = new RequestSecurityToken
            {
                RequestType = RequestTypes.Issue,
                KeyType = KeyTypes.Bearer,
                AppliesTo = new EndpointReference("https://dcadfs.security.net/adfs/services/trust/13/windowsmixed")
            };

            var channel = factory.CreateChannel();
            var genericToken= channel.Issue(rst) as GenericXmlSecurityToken;

            if (genericToken != null)
            {
                var sh = new WindowsUserNameSecurityTokenHandler();
                //Next line errors with ID4065: Cannot read security token. Exepected elemt is username
                var token = sh.ReadToken(new XmlTextReader(new StringReader(genericToken.TokenXml.OuterXml)));
                var claimsPrincipal = new ClaimsPrincipal(sh.ValidateToken(token2).First());
            }           

        }
    }
}

它在 ReadToken 上失败,出现预期的名称元素错误,我想我可能使用了错误的处理程序/初始化错误?

我也认为我错过了其他几点

  1. 我绝不会向 AD FS 识别依赖方是谁。
  2. 由于我没有使用服务,因此我不确定将 AppliesTo 设置为什么,因此我将其设置为 AD FS 端点。

关于其中任何一个的任何建议都会很棒。

真的很难在基于 WCF/配置的方法之外找到这样的例子。我试图在代码中得到这一切,让我更好地理解它是如何工作的。

4

1 回答 1

1

1 和 2 是相关的——AppliesTo 指定 ADFS 中的 RP。

返回的是 SAML 令牌 - 因此您需要使用 SamlSecurityTokenHandler 来读取令牌(而不是 WindowsUserName...)。

于 2013-01-30T06:06:53.853 回答