WIF(使用Thinktecture Identity Server)和双工WCF通道

时间:2014-06-24 15:19:50

标签: .net wcf wif thinktecture-ident-server

我目前正在使用Thinktecture Identity Server版本2.4和Windows Identity Foundation来保护.net应用程序与使用已发行令牌的服务器之间的通信。

我通过公开联合端点并使用通道工厂的“CreateChannelWithIssuedToken(SecurityToken)”方法来提供从Issue请求返回的安全令牌,从而在标准WCF NET TCP通道上工作。

但是,似乎没有允许我们传入实例上下文的DuplexChannelFactory的等效方法。我已经阅读了这篇文章 - http://msdn.microsoft.com/en-us/library/cc668765(v=vs.110).aspx - 其中详细介绍了如何创建双工绑定以实现此目的,但是在创建通道时,我看不到在通道上设置安全令牌的方法。

在客户端凭据上有IssuedToken属性 - http://msdn.microsoft.com/en-us/library/system.servicemodel.description.clientcredentials.issuedtoken(v=vs.110).aspx - 但是它是只读的。

是否有人使用可以提供建议的TCP消息安全模式在双工通道上实现联合安全性?

1 个答案:

答案 0 :(得分:3)

虽然手动创建频道并使用STS自行发出令牌并不错,但您可以利用WIF框架为您完成此任务。

如果您通过配置配置客户端以了解STS,则框架将使用您在通道上设置的消息凭据自行检索令牌。然后框架将设置" IssuedToken"关于渠道凭证的财产。

<ws2007HttpBinding>
    <binding name="ws">
      <security mode="TransportWithMessageCredential">
        <message establishSecurityContext="false"
          negotiateServiceCredential="true"
                 clientCredentialType="UserName" />
      </security>
    </binding>
</ws2007HttpBinding>
<customBinding>
    <binding name="FederationDuplexTcpMessageSecurityBinding">
      <reliableSession />
      <security authenticationMode="SecureConversation">
            <secureConversationBootstrap authenticationMode="IssuedTokenForSslNegotiated">
                <issuedTokenParameters>
                    <issuer address="https://IdentityServer.domain/issue/wstrust/mixed/username" binding="ws2007HttpBinding" bindingConfiguration="ws" />
                    <issuerMetadata address="https://IdentityServer.domain/issue/wstrust/mex" />
                    <additionalRequestParameters>
                        <wsp:AppliesTo xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy">
                            <EndpointReference xmlns="http://www.w3.org/2005/08/addressing">
                              <Address>RelyingParty.com</Address>
                            </EndpointReference>
                        </wsp:AppliesTo>
                    </additionalRequestParameters>
                </issuedTokenParameters>
            </secureConversationBootstrap>
        </security>
    <tcpTransport />
    </binding>
</customBinding>

上面的代码片段显示了如何使用安全对话和secureConversationBootstrap创建双工通道来处理联合安全性。

这样做的一个优点是您还可以设置自己的信赖方URI,因此您不必将WCF端点用作信赖方的标识符。

您还需要设置联合服务行为以启用WIF,如下所示(useIdentityConfiguration非常重要,因为它会启用WIF):

<behavior name="FederatedServiceBehaviour">
  <clientCredentials useIdentityConfiguration="true" supportInteractive="false" >
    <serviceCertificate/>
  </clientCredentials>
</behavior>

设置服务端点在此处记录:http://msdn.microsoft.com/en-us/library/cc668765(v=vs.110).aspx(在某种程度上)

据我所知,DuplexChannelFactory本身没有公开在通过实例上下文时创建具有已发布令牌的通道的方法。

希望这有帮助!