zoukankan      html  css  js  c++  java
  • 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.

  • 相关阅读:
    根据坐标点画图形
    js 解析geojson格式
    devexpress 安装
    DataTable 获取列名
    ADO.NET 注册
    css:outline
    javascript函数sort
    引用类型-2015/10/06
    2015-11-02-js
    jquery
  • 原文地址:https://www.cnblogs.com/ATually/p/7004356.html
Copyright © 2011-2022 走看看