开发者

When do we use windows service?

开发者 https://www.devze.com 2022-12-31 10:44 出处:网络
Are there situations that we should use a wi开发者_JAVA百科ndows service ? I am building a client-server project (c#) and the server supposed to work alone without any user so someone advised me to us

Are there situations that we should use a wi开发者_JAVA百科ndows service ?

I am building a client-server project (c#) and the server supposed to work alone without any user so someone advised me to use a windows service to run the server, is this right ? or there are a better solutions ?


Windows services are normally used when an application needs to continuously run. For example if they need to:

  1. Wait for incoming requests. (Like through remoting or wcf)
  2. Monitor a queue, file system etc.

If a program just needs to run periodically, like once a day. It is normally easier to create a scheduled task.


In your situation I would use a service for the following reasons:

  • You don't need to have a session running. This is good for security, and also reduces overhead on the server.
  • You get some of the managment commands built in for free
    • Start
    • Stop
    • Pause
    • Continue
  • You can handle server events such as shutdown.


Windows service can start running as soon as the machine is powered up, which makes ideal for running as a server, http server for example. No one is required to login.


You should create a Windows Service to run code in the background, without user interaction.

For example, a Windows Service will run even if no-one is logged on.

Any server that accepts connections (such as a mail, web, or FTP server) should usually be a Windows Service.


Well, a Windows Service provides a full framework for your application to work and to remain active while you want it to, so I think its ok.


Windows services are the right thing to use for something that should run all of the time, whether or not a user is logged in.

If you need something to run without an active user logged in, you need to use a windows service.


When you need the application to start running even when no one has physically logged into the machine, which is common with server machines, a service is a good candidate in this case. Especially because the service can be configured to auto start, which means the service will start when the machine is rebooted withut human intervention.

If however you are wanting to host web services (WCF) while a service is an option, you might consider hosting in IIS, this relieves you of writing the actual hosting code etc.

0

精彩评论

暂无评论...
验证码 换一张
取 消