1
如果客戶端使用證書進行身份驗證,如何在wcf中使用客戶端證書身份驗證?wcf中的客戶端證書
如果客戶端使用證書進行身份驗證,如何在wcf中使用客戶端證書身份驗證?wcf中的客戶端證書
您必須設置
<transport clientCredentialType="Certificate" />
在服務的conf
,告訴WCF的crendential由客戶端證書提供。
,並設置messageEncoding = 「MTOM」
<wsHttpBinding>
<binding name="wshttpconfig" messageEncoding="Mtom">
<readerQuotas maxArrayLength="64000" />
<security mode="Transport">
<transport clientCredentialType="Certificate" />
</security>
</binding>
</wsHttpBinding>
看到這個鏈接
An easy way to use certificates for WCF security
Configuring WCF for client certificate authentication
Using Certificate-based Authentication and Protection with Windows Communication Foundation (WCF)
再見。