0

我已经创建了 WCF 服务项目。它在 SVC 文件中有以下内容。

    <%@ ServiceHost Service="Deepak.BusinessServices.Implementation.ApiImplementation"
      Factory="Deepak.BusinessServices.Implementation.CustomServiceHostFactory"%>

SVC 参考

    http://localhost/DeepakGateway/Service.svc

服务已启动并生成 WSDL。现在我想将此服务托管为 Windows 服务。我该怎么做?

我创建了“Windows 服务”项目并具有以下代码。

protected override void OnStart(string[] args)
    {
        if (m_Host != null)
        {
            m_Host.Close();
        }
        Uri httpUrl = new Uri("http://localhost/DeepakGateway/Service.svc");

        m_Host = new ServiceHost
        (typeof(?????? WHAT TO FILL HERE?), httpUrl);
        //Add a service endpoint
        m_Host.AddServiceEndpoint
        (typeof(?????? WHAT TO FILL HERE?), ), new WSHttpBinding(), "");
        //Enable metadata exchange
        ServiceMetadataBehavior smb = new ServiceMetadataBehavior();
        smb.HttpGetEnabled = true;
        m_Host.Description.Behaviors.Add(smb);
        //Start the Service
        m_Host.Open();


    }
4

1 回答 1

0

您需要在ServiceHost构造函数中添加实现服务合同的类的类型,并您的AddServiceEndpoint

假设您的服务实现类如下所示:

namespace Deepak.BusinessServices.Implementation
{ 
    public class ApiImplementation : IApiImplementation
    {
       ....
    }
 }

那么你需要:

m_Host = new ServiceHost(typeof(ApiImplementation), httpUrl);
m_Host.AddServiceEndpoint(typeof(IApiImplementation), new WSHttpBinding(), "");
  • 服务主机需要知道要托管什么(具体)类型的服务类
  • 端点需要知道它暴露了什么服务契约(接口
于 2013-08-26T04:35:11.900 回答