2

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

实例.cs:

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

服务.cs:

 public bool getstatus()
    {
        return true;
    }

绑定WS.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();
            }
        }
    }

上面的代码可以正常运行WCFHtpp但我如何将其转换为HTTPS. 我关注了很多博客,但没有得到任何东西。有可能做到吗?

4

1 回答 1

1

基本上,您需要针对您在主机中使用的端口号手动注册证书。以下是有关如何完成此操作的一些详细信息

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

21/2/13 更新:

如果您已按上述方式为域注册了证书,您应该能够通过对上面的代码进行一些调整来使其正常工作。下面是一些使用控制台应用程序作为主机的示例代码。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();
        }
于 2013-02-18T10:11:01.943 回答