<localIssuer>
セキュリティ トークンの取得に使用される、ローカル発行者のアドレスとバインディングを指定します。
<system.serviceModel>
<behaviors>
<endpointBehaviors>
<endpointBehaviors> の <behavior>
<clientCredentials>
<issuedToken>
<localIssuer>
<localIssuer address="string"
binding="string"
bindingConfiguration="string" />
属性および要素
属性
属性 | 説明 |
---|---|
address |
必須の文字列です。ローカル発行者の URI を指定します。 |
binding |
省略可能な文字列です。システム指定のバインディングの 1 つ。一覧については、「System-Provided Bindings」を参照してください。 |
bindingConfiguration |
省略可能な文字列です。構成ファイル内に存在するバインディング構成を指定します。 |
子要素
要素 | 説明 |
---|---|
ローカル発行者の ID 情報を指定します。 |
|
ローカル発行者を正しくアドレス指定するために必要なアドレス ヘッダーのコレクション。add キーワードを使用して、このコレクションにヘッダーを追加できます。 |
親要素
要素 | 説明 |
---|---|
サービスに対するクライアントの認証に使用されるカスタム トークンを指定します。 |
解説
発行されたトークンをセキュリティ トークン サービス (STS) から取得する場合は、クライアント アプリケーションに、STS との通信に使用するアドレスとバインディングが構成されている必要があります。WSFederationHttpBinding にセキュリティ トークン サービスの URL が設定されていない場合、またはフェデレーション バインディングの発行者アドレスが https://schemas.microsoft.com/2005/12/ServiceModel/Addressing/Anonymous か null である場合、クライアントの Windows Communication Foundation (WCF) チャネルは、address と binding で指定された値を使用して STS と通信し、発行されたトークンを取得します。ローカル発行者の構成の詳細については、「How To: Configure a Local Issuer」を参照してください。
例
次の例は、localIssuer 要素の address、binding、および bindingConfiguration 属性を設定します。
<system.serviceModel>
<behaviors>
<endpointBehaviors>
<behavior name="MyEndpointBehavior">
<clientCredentials>
<issuedToken cacheIssuedTokens="false"
defaultKeyEntropyMode="ClientEntropy">
<localIssuer address="net.tcp://cohowinery/tokens"
binding="netTcpBinding"
bindingConfiguration="myTcpBindingConfig" />
</issuedToken>
</clientCredentials>
</behavior>
</endpointBehaviors>
</behaviors>
</system.serviceModel>
関連項目
リファレンス
LocalIssuer
IssuedTokenParametersEndpointAddressElement
IssuedTokenClientCredential
その他の技術情報
Security Behaviors in WCF
How To: Configure a Local Issuer
Specifying Service Identity
Security Behaviors in Windows Communication Foundation
Federation and SAML
Securing Services and Clients
Securing Clients
How To: Create a Federated Client
Federation and Issued Tokens