WCF: Hosting WCF in Windows Service

Posted m苗子

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WCF: Hosting WCF in Windows Service相关的知识,希望对你有一定的参考价值。

1. Create a windows service project

 

2. Add Reference to the assembly which contains the contract and its implementation.

3. Remove the Service1.cs, add a new Windows Service class and name it to CalculatorWindowsService

4. Override OnStart and OnStop method in WindowsServiceHost class

  a. instantiate ServiceHost and open it in Onstart

  b. Close the ServiceHost in Onstop

 

5. Create a Installer class to allow the exe to be installed as windows service

6. Instantiate a CalculatorWindowsService in the Program Main method.

 

7. Edit App.config and add configuration info for the service

 

8. Build Project and execute installutil.exe /i WindowsServiceHost.exe to install the service.

9. Open services.msc and start the service.

 

以上是关于WCF: Hosting WCF in Windows Service的主要内容,如果未能解决你的问题,请参考以下文章

WCF

WCF寄宿(Host)之自我寄宿(Self-Hosting)简单实例Windows应用程序宿主

创建一个简单的WCF程序

关于WCF引用方式之WCF服务寄宿控制台

使用单个 Windows 服务托管 4 个不同的 WCF 项目。如何?

您啥时候会使用 In-Proc WCF 组件?