我创建了一个WCF HTTP
自托管的 Web 服务。现在我想把它转换成HTTPS
. 所以我遵循以下几点:
按照此页面创建一个certificates
并将其绑定到特定端口。mmc
我使用->创建了一个证书console root
,并遵循上面链接中编写的相同步骤。
然后我运行以下命令将端口与证书绑定:
netsh http add sslcert ipport=0.0.0.0:8000 certhash=0000000000003ed9cd0c315bbb6dc1c08da5e6 appid={00112233-4455-6677-8899-AABBCCDDEEFF}
我certhash
根据我的证书改变。我也检查Created certificate info
并得到了这个。
我还将粘贴在我的项目中编写的代码以在绑定端口上运行 Web 服务:
try
{
m_running = true;
private static String m_baseAddress = "https://10.0.0.1:8083";
WebHttpBinding _binding = new WebHttpBinding();
_binding.Security.Mode = WebHttpSecurityMode.Transport;
_binding.Security.Transport.ClientCredentialType = HttpClientCredentialType.Certificate;
m_serviceHost = new WebServiceHost(typeof(TService), new Uri(m_serviceAddress));
m_serviceHost.Credentials.ServiceCertificate.SetCertificate(StoreLocation.LocalMachine, StoreName.My, X509FindType.FindBySubjectName,"contoso.com");
ServiceEndpoint ep = m_serviceHost.AddServiceEndpoint(typeof(TContract), _binding, "");
m_serviceHost.Open();
}
catch(Exception e){ }
每当我重建我的项目并运行它时。它总是开始一秒钟然后停止。我检查了日志,什么都没有。
但是当我删除这条线时
m_serviceHost.Credentials.ServiceCertificate.SetCertificate(StoreLocation.LocalMachine, StoreName.My, X509FindType.FindBySubjectName,"contoso.com");
并替换https
为http
. 它工作正常。