如何使用HTTPS访问WCF WebServiceHost端点

本文关键字:WebServiceHost 端点 WCF 访问 何使用 HTTPS | 更新日期: 2023-09-27 17:59:46

我已经成功创建了WCF self-hosted HTTP web服务。我使用webserviceHost来创建此服务。我没有对web.config文件进行任何更改。这是我的代码:

实例.cs:

 [OperationContract, WebInvoke(Method = "GET", UriTemplate = "/getstatus/", ResponseFormat = WebMessageFormat.Json)]
    bool getstatus();

service.cs:

 public bool getstatus()
    {
        return true;
    }

BindingWS.cs

 void bindservice()
    {
        try
        {
            m_running = true;
            // Start the host
            m_serviceHost = new WebServiceHost(typeof(Swiper.cs), new Uri(http://localhost:8083"));
            ServiceEndpoint ep = m_serviceHost.AddServiceEndpoint(typeof(Instace.cs), new WebHttpBinding(), "");
            m_serviceHost.Open();
            while (m_running)
            {
                // Wait until thread is stopped
                Thread.Sleep(SleepTime);
            }
            // Stop the host
            m_serviceHost.Close();
        }
        catch (Exception e)
        {
            Console.WriteLine(e.Message);
            if (m_serviceHost != null)
            {
                m_serviceHost.Close();
            }
        }
    }

上面的代码可以很好地在Htpp上运行WCF。而是如何将其转换为CCD_ 6。我关注了很多博客,但一无所获。有可能做到吗?

如何使用HTTPS访问WCF WebServiceHost端点

基本上,您需要根据主机中使用的端口号手动注册证书。以下是关于如何实现的一些细节

http://msdn.microsoft.com/en-us/library/ms733791.aspx

2013年2月21日更新:

如果你已经如上所述注册了域的证书,你应该能够通过对上面的代码进行一些调整来实现这一点。下面是一些使用控制台应用程序作为主机的示例代码。HTH。

    using (var serviceHost = new WebServiceHost(typeof(Swiper), new Uri("https://localhost:8083")))
        {
            var secureWebHttpBinding = new WebHttpBinding(WebHttpSecurityMode.Transport) { Name = "secureHttpWeb" };
            serviceHost.AddServiceEndpoint(typeof(ISwiper), secureWebHttpBinding, "");
            serviceHost.Open();
            Console.WriteLine("Service running...");
            Console.WriteLine("Press any key to stop service.");
            Console.ReadLine();
            // Stop the host
            serviceHost.Close();
        }