我試圖讓託管在IIS將使用X.509證書,郵件安全和與需要相互驗證SSL運輸安全WCF4服務(項目規範要求使用WS-Security 和 SSL,AFAIK只有一個通常是要走的路,但沒關係)。WCF 4 - TransportWithMessageCredential使用X.509證書運輸和信息安全
我做了我TestRootCA並用它來頒發服務器證書(本地主機)和客戶端證書(TestUser用戶)。我首先只想建立和測試傳輸安全性,所以我配置IIS使用https,配置的SSL證書(我製作的localhost證書),並將IIS配置爲,要求客戶端提供客戶端證書。然後我修改了服務web.config,創建了相應的svcutil.conf,並運行了svcutil,成功爲我的測試WinForms應用程序創建了客戶端代理類和app.config。
var client = new ServiceClient();
client.ClientCredentials.ClientCertificate.SetCertificate(System.Security.Cryptography.X509Certificates.StoreLocation.CurrentUser, System.Security.Cryptography.X509Certificates.StoreName.My, System.Security.Cryptography.X509Certificates.X509FindType.FindBySubjectDistinguishedName, "CN=TestUser");
MessageBox.Show(client.GetData(42));
到目前爲止好:我通過調用創建代理客戶端時設置的證書。但是,當我修改服務的web.config以使用TrasportWithMessageCredential(而不是傳輸)並指定「Certificate」作爲clientCredentialType以獲得郵件安全性時,我獲得HTTP 403 - The HTTP request was forbidden with client authentication scheme 'Anonymous'
,即使我指定了「Certificate」。
我最後的web.config文件看起來是這樣的:
<system.serviceModel>
<bindings>
<wsHttpBinding>
<binding name="wsHttpEndpointBinding">
<security mode="TransportWithMessageCredential">
<transport clientCredentialType="Certificate"/>
<message clientCredentialType="Certificate"/>
</security>
</binding>
</wsHttpBinding>
</bindings>
<services>
<service behaviorConfiguration="serviceBehavior" name="Service">
<endpoint binding="wsHttpBinding" bindingConfiguration="wsHttpEndpointBinding" name="wsHttpEndpoint" contract="IService" />
<endpoint address="mex" binding="wsHttpBinding" bindingConfiguration="wsHttpEndpointBinding" name="mexEndpoint" contract="IMetadataExchange" />
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="serviceBehavior">
<serviceMetadata httpsGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="true" />
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>
和我的客戶app.conf:
<system.serviceModel>
<bindings>
<wsHttpBinding>
<binding name="wsHttpEndpoint" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard" maxBufferPoolSize="524288" maxReceivedMessageSize="65536" messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false" />
<security mode="TransportWithMessageCredential">
<transport clientCredentialType="Certificate"/>
<message clientCredentialType="Certificate"/>
</security>
</binding>
</wsHttpBinding>
</bindings>
<client>
<endpoint address="https://localhost/WCFTestService/Service.svc" binding="wsHttpBinding" bindingConfiguration="wsHttpEndpoint" contract="IService" name="wsHttpEndpoint" />
</client>
</system.serviceModel>
任何想法?
編輯:
我已經成功地得到它通過更改IIS設置SSL客戶端證書的工作從需要到接受。看來,當我介紹了使用SSL使用過的運輸安全證書信息安全,客戶端使用通過SSL相互認證的證書,郵件簽名,但不(它試圖身份登錄,即使它有指定的證書匿名 )。
不知道爲什麼發生這種情況,我想從專家:)一些評論。
還沒有嘗試過這一點,但即使它能夠工作,在* server * config中指定* client *證書的需求也是一個交易斷路器。服務器事先並不知道客戶端證書(並且有許多不同的客戶端),它使用鏈式信任(如果客戶端證書的有效性是有效的,那麼客戶端證書被接受並用作標識)。 –
這解決了我得到的錯誤「HTTP請求被客戶端身份驗證方案'Anonymous'禁止」。我只有指定的服務器證書。謝謝 – Nanook