デュプレックス フェデレーション wcf サービスを開発しています。フェデレーション シナリオは正常に動作していますが、デュプレックスにしようとすると、「受信ポリシーを検証できませんでした」という例外がスローされます。
私の設定に問題があると思いますが、それでも間違いを突き止めることができません。
以下は私の構成です:
私の主なサービスの場合:
<bindings> <customBinding> <binding name='MyServiceBinding'> <security authenticationMode='SecureConversation'> <secureConversationBootstrap authenticationMode='IssuedTokenForCertificate'/> <issuedTokenParameters> <issuerMetadata address='http://localhost:62751/TokenIssuer.svc/mex'/> </issuedTokenParameters> </security> <compositeDuplex/> <oneWay/> <httpTransport/> </binding> </customBinding> </bindings> <services> <service name="MyService.MyService" behaviorConfiguration='MyServiceBehavior'> <endpoint address="Response" binding="customBinding" bindingConfiguration='MyServiceBinding' contract="MyService.IMyService" /> <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" /> </service> </services> <serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
STS 構成
および 3. クライアント構成
<system.serviceModel>
<bindings>
<customBinding>
<binding name='MyServiceBinding'>
<security authenticationMode='SecureConversation'>
<secureConversationBootstrap authenticationMode='IssuedTokenForCertificate'/>
<issuedTokenParameters>
<issuer address='http://localhost:62751/TokenIssuer.svc' binding='wsHttpBinding' bindingConfiguration='MyTokenIssuer'/>
</issuedTokenParameters>
</security>
<compositeDuplex/>
<oneWay/>
<httpTransport/>
</binding>
</customBinding>
<wsHttpBinding>
<binding name="MyTokenIssuer">
<security mode="Message"/>
</binding>
</wsHttpBinding>
</bindings>
<behaviors>
<endpointBehaviors>
<behavior name="GetResponseClientBehavior">
<clientCredentials>
<serviceCertificate>
<authentication certificateValidationMode="PeerOrChainTrust"/>
</serviceCertificate>
</clientCredentials>
</behavior>
</endpointBehaviors>
</behaviors>
<client>
<endpoint name="WSFederationHttpBinding_IMyService" address="http://localhost:53121/MyService.svc/Response" binding="customBinding" bindingConfiguration="MyServiceBinding" behaviorConfiguration="GetResponseClientBehavior" contract="IMyService">
<identity>
<certificateReference storeLocation="CurrentUser" storeName="TrustedPeople" x509FindType="FindBySubjectName" findValue="BookStoreService.com"/>
</identity>
</endpoint>
</client>
</system.serviceModel>