我想在WCF上啓用SSL,以及在WCF客戶端需要做什麼?在WCF上啓用SSL。客戶端需要做什麼?
我發現我可以做如下。
BasicHttpBinding b = new BasicHttpBinding();
b.Security.Mode = BasicHttpSecurityMode.Transport ;
b.Security.Transport.ClientCredentialType = HttpClientCredentialType.Windows.
但客戶端怎麼樣?謝謝。
編輯:WCF託管在IIS上,我的wpf應用程序將使用它。客戶將在他/她的PC上安裝這個應用程序。