WCF: Hosting WCF in Windows Service_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > WCF: Hosting WCF in Windows Service

WCF: Hosting WCF in Windows Service

 2017/6/14 5:33:03  m苗子  程序员俱乐部  我要评论(0)
  • 摘要:1.Createawindowsserviceproject2.AddReferencetotheassemblywhichcontainsthecontractanditsimplementation.3.RemovetheService1.cs,addanewWindowsServiceclassandnameittoCalculatorWindowsService4.OverrideOnStartandOnStopmethodinWindowsServiceHostclassa
  • 标签:Windows Service WCF

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.

 

上一篇: 小米手环问鼎第一:每7人就有1人在用 下一篇: 没有下一篇了!
发表评论
用户名: 匿名