Home  >  Article  >  Backend Development  >  What does wcf mean? Example tutorials about wcf

What does wcf mean? Example tutorials about wcf

零下一度
零下一度Original
2017-06-23 15:02:372275browse

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.

 

The above is the detailed content of What does wcf mean? Example tutorials about wcf. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn