Click here to Skip to main content
15,867,308 members
Articles / Desktop Programming / Win32
Article

Windows Services in Action I

Rate me:
Please Sign up or sign in to vote.
4.73/5 (58 votes)
20 May 2008CPOL11 min read 166.7K   2.4K   255   54
Explains windows services basics and deployment with details.

Download SimpleWindowsService.zip - 427 KB

Introduction

While we were developing our Corporate Portal, I was asked for a functionality, which congratulates the birthday of our stuff sending an e-mail message. There was a congratulating message doing the same task at the main page of Intraweb but it was only for whom opens that. But we wanted that when they open their mailbox, they see a congratulating message of their own birthdays.
There fore I realised that this cannot be accomplished with a web application and I decided to create a windows Service which will run on the server and search once in a day the stuffs birthdays and then send them the message if there is(are) a match(any matches.)
Shorly, the task is to search database for the stuff table and if there is(are) birthday(s) matching on the day, send them a congratulation message (e-mail). I thought that it could be achieved best using a windows service.

The basics of Windows services are given in this article. If you feel your knowledge enough, you can just skip this one and step on next article here. Windows Services in Action II.

Background

Some tasks can be solved with only windows services effectively.So every developer should decide when to use them and how to use them. I have searched about windows services because i needed in numerous cases. After all code work i decided to share it with other coders.

Windows Services in .NET

Firstly I will try to give you basic information about Windows Services in .NET and show how we can use in a real-world task. Steps:

1. What are windows services?

2. The Architecture

3. The Methods

4. The Components

5. Create a windows service application

6. Installation process

7. Monitoring and administration

1. What are windows services?


Windows services are used to create long-running executable applications that run in their own Windows sessions in the background. Windows services do not have a user interface because they are not meant to interact with users. They can be configured to start automatically when the computer boots, we can start them manually or some start when needed. They can be started, paused, restarted or stopped using the Service Control Manager which is the central utility provided to control them.
They must be installed to system to run in a normal manner. We cannot run or debug Window services without installation.We need a special component to install them or take special steps to have them ready to run.Windows service applications run in a different window station than the interactive station of the logged-on user. Because the station of the Windows service is not an interactive station they should be logged in the Windows event log instead of using a user interface.
Windows service applications run in their own security context and are started before any users log on into the computer which they are installed.Some examples to Windows service applications:
Network Connections, Print Spooler, Net Logon…You can see them typing services.msc on the Run menu item of Windows Start Menu if you have an NT Based OS like Windows 2000, XP, 2003 Server…

2. The Architecture of Windows services in .NET

  • ServiceBase Class To create a new service class, it inherited from SerciveBase class. The methods of the class can be overridden to change their functionality if needed.
  • ServiceProcessInstaller
    A windows service must be represented using ServiceProcessInstaller class in obtain to communicate and control the service.

  • ServiceInstaller
    A windows service must be expanded using ServiceInstaller class to be able to use the standart .NET installation method.
  • The namespace of these classes is System.ServiceProcess and their assembly is System.ServiceProcess. So they can be found in system.serviceprocess.dll.

3. The Methods

There are several methods exposed by the ServiceBase class These methods can be overridden to add custom behavior.

OnStart: This is called when the service starts running. So we can override it if we need to take an action in this step.
OnPause: This is called when the service is paused.
OnStop: This is called when the service is stopped.
OnContinue: This is called when the service is resumed after being paused.
OnShutdown: This is called when the service is just prior to your system shutting down.
OnCustomCommand: This is called when your service receives a custom command.
OnPowerEvent: This is called when a power management event is received.

4. The Components

  • First of all, the service has some properties like CanStop(true by default), CanShutdown, CanPauseAndContinue, ServiceName(Service1 by default)
  • EventLog component is widely used in windows services. Logs can be created by this component very simply. Log is the name of the log. Source property is to spesify the application name to use when writing to the eventlog. There will be some code examples related to eventlog component.
  • ServiceInstaller and ServiceProcessInstaller components are necessary to make the windows service ready to use standard setup project. These two components are added automatically if we add installer to the service. ServiceInstaller’s mostly set properties are ServiceName which is shown in the services tool and StartType which determines when the service is started. The most important property of ServiceProcessInstaller component is account. Usually this property is set to LocalService.

5. Create a windows service application

We can create a windows service writing code or using Windows service project template.


Creating a windows service

  • Open Visual Studio 2005, click File, New and choose Project menu item. You will see the window below.

Screenshot - S-0000.jpg

  • Select Windows Service project template and rename project name as “SimpleWindowsService” or whatever you want.
  • Then VS will create all basic classes for you and you will see the environment like below.
Screenshot - S-0001.jpg
  • You can change the name of service1 as SimpleService. If you do this, a small window will apear and ask you whether you change related refences. Click yes.
  • If you double click the workspace of SimpleService[Design], you can see the code page where you can work when necessary. Illustrated below.
Screenshot - S-0002.jpg
  • As you see, most of the codes and classes created automatically. Program.cs is where the service created and run. It uses ServiceProcess. So you can see using System.ServiceProcess; code at the top.
  • Usually you don’t have to anything here.
Screenshot - S-0003.jpg

Now, our SimplewWindowsService is ready to go. You can build it (by pressing F6) But we cannot run it because it is not installed. And even it is installed it doesn’t have any functionlities except starting, stoping.


Therefore we will add some simple functonalities to our SimpleService.

Adding some functionalities to a Windows Service

  • Open SimpleService.cs in Design mode.
    The is task is to write into a log when the service starts and stops so that we will be simply informed using Windows standard Eventviewer.
  • When in Design mode of SimpleService.cs Drop an eventLog component from the Components tab in the Toolbox to design area.
    (To switch to Design mode press Shift+F7 and to switch to code view press F7)
Screenshot - S-0000a.jpg
  • Rename eventLog1 component’s name as eventLogSimple · The eventlog component must be initialized in SimpleService method which is already created automatically in SimpleService.cs. After we modified the code, it will look like below:
public SimpleService()
{
            InitializeComponent();
    // Initialize eventLogSimple   
    if(!System.Diagnostics.EventLog.SourceExists("SimpleSource"))
        System.Diagnostics.EventLog.CreateEventSource("SimpleSource","SimpleLog");
    eventLogSimple.Source= "SimpleSource";
    eventLogSimple.Log = "SimpleLog";
}
  • Add the line below to OnStart Method which is already created.
eventLogSimple.WriteEntry("Hello world from Simple Service!");
  • Add the line below to OnStart Method which is already created also.
eventLogSimple.WriteEntry("Simple Service stopped!");
  • Press F6 to build our windows service if you see “Build succeded” message at the bottom on the satus bar, you are done. Now, our windows service is ready to be installed.

6. Installation process

Install the Windows Service
The easiest way of installing a windows service is using the installer components and the Setup Project of Visual Studio 2005.

  • Right-click SimpleService.cs in Solution Explorer and select View Designer.
  • Right-click the design area and select Add Installer. Then ProjectInstaller.cs page will appear in design view. And there will be replaced two components in it: serviceProcessInstaller1 and serviceInstaller1 like below:

    Screenshot - S-0006.jpg
  • Rename them as serviceProcessInstallerSimple and serviceInstallerSimple respectively. · Find the ServiceName property of serviceInstallerSimple in Properties windows.
  • Rename its value as SimpleService. It is Service1(default value). The service will be presented by this value. So it is better to set to a meaningful name.
  • Another important property of serviceInstallerSimple component is StartType. It has three values: Manual, Automatic and Disabled. It is set to Manual by default. This means we must start the Service manually. Let’s set the property to Automatic so that it starts when windows starts.

Screenshot - S-0007.jpg

  • After that, select serviceProcessInstallerSimple in the designer and set the Account Property to LocalService. Therefore the service will be installed and run on a local account.
  • In Solution explorer, select SimpleWindowsService project, right-click it and select Properties.
  • The Property Designer of the project will appear. Chose SimpleWindowsService.Program from the Startup object on Application page.

Screenshot - S-0008.jpg

  • In Solution explorer, select Solution “SimpleWindowsService” and right-click and select Build Solution. If everything went OK, you see “Build succeded” message at the bottom.

The service is now can be installed. There are two installation methods:

  • Windows service can be on your system using InstallUtil.exe. The utility must be run on the Visual Studio 2005 Command Prompt (Usually found in "C:\Program Files\Microsoft Visual Studio 8\VC\ ". For instance, C:\Program Files\Microsoft Visual Studio 8\VC\installutil C:\SimpleWindowsService\SimpleWindowsService\bin\Debug\ SimpleWindowsService.exe in our case.

Screenshot - S-0009.jpg

And to uninstall the service the utility must be used with –u parameter: C:\Program Files\Microsoft Visual Studio 8\VC\installutil -u C:\SimpleWindowsService\SimpleWindowsService\bin\Debug\ SimpleWindowsService.exe

  • Another method is to add a setup project to the solution and use the result package to install and uninstall the windows service. In this case, the Add or Remove programs tool in the Control Panel of the windows system can be used to uninstall it.

Adding a setup project to our solution

  • Right-click SimpleWindowsService solution in Solution Explorer, select Add, New Project and select Deployment project. Give a meaningful title to the project as seen below.

Screenshot - S-0011.jpg

  • Right-click SetupSimpleWindowsService In Solution Explorer, select add, then choose Project Output.

Screenshot - S-0012.jpg

  • From the list box, select Primary Output, and click OK.

Screenshot - S-0013.jpg

  • To add a custom action right-click the setup project In Solution Explorer, select View, and then click Custom Actions.

Screenshot - S-0014.jpg

  • Right-click the Custom Actions node and choose Add Custom Action.

Screenshot - S-0016.jpg

  • Double-click the Application Folder in the list box to open it, select Primary Output from SimpleWindowsService (Active), and click OK.

Screenshot - S-0017.jpg

  • The primary output is added to all four nodes of the custom actions — Install, Commit, Rollback, and Uninstall.

Screenshot - S-0018.jpg

  • In Solution Explorer, right-click the SimpleWindowsServiceSetup project and click Build. After building the solution there can be found setup project SetupSimpleWindowsService.msi in the setup folder. (C:\SimpleWindowsService\SetupSimpleWindowsService\Debug in our case.)

Screenshot - S-0019.jpg

  • It can be double-clicked to run the setup program and it is used to install, uninstall, commit and rollback. Finally the Setup Wizard of our solution be appeared and followed familiar setup steps.
  • Or the setup project can be started by right-clicking the setup project in Solution Explorer and selecting Install.

Screenshot - S-0020.jpg

  • After finished the installation, it can be seen in Services on our Windows System.
  • To view Services, from Control Panel choose Administrative Tools and click Services.

Screenshot - S-0021.jpg

  • To start the service right-click on it and select Start.

Screenshot - S-0022.jpg

  • To view the logs of our windows service click Event Viewer in Administrative Tools. You can see SimpleLog item in the treeview at the left which is created by our service and this item is where our services logs are kept. If you started the service, you can see an event log at the right.

Screenshot - S-0023.jpg

  • Double-click on it to open then you can see the message "Hello world from Simple Service!" here.

Screenshot - S-0024.jpg

  • To uninstall it you can use Add or Remove Programs in Control Panel.

Screenshot - S-0025.jpg

Ofcourse you can use the Setup Project to uninstall the service but be careful to use the same Build which is used for installation. If you built solution, installed it and then rebuilded it again the Setup Project changes and cannot uninstall the service. In this situation you can keep the Setup file which is used for installation or just use Add or Remove Programs tool.

7. Monitoring and administration

We said that windows services don’t need a user interface. Therefore we have to manage them using other tools. There are three ways:
1. Microsoft Services : The Services tool in Administrative Tools is also used to monitor and manage the services.
2. The console: Services can be managed by using the command prompt: The line below is used to start the service:
C:\net start SimpleWindowsService
3. Yes, we can manage them programmatically. I think this is out of the scope of this article.

Conclusion

I think, the solution is simple but of course should be improved to overcome your real-time problems. I am planning to improve my solution in the future and expect your help. I am planning to write another article to show you how a windows service can be used.

History

21 Aug 2007 Initial revision.

Sources

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Turkey Turkey
Started writing code in 1988. There were GW Basic, Turbo Pascal, Turbo C under DOS.
While studentship there were Assembly, C++, digital electronics, microprocessors..in the scene as new things. Then next versions, next generations like Visual Basic, Delphi, C++ Builder, next platforms like Windows, Win32, Linux. Last years many projects took place using various tech and under various platforms. New technologies and IDEs like Delphi 2005, Visual Studio 2003, 2005, C#, ASP.NET, ADO.NET, Metodologies and Tools like UML, Starteam..

Comments and Discussions

 
GeneralRe: Debug service Pin
javar8-May-08 1:12
javar8-May-08 1:12 
GeneralRe: Debug service Pin
arifhan15-Apr-09 1:22
arifhan15-Apr-09 1:22 
Generalen.. Pin
Jacky Zhong25-Feb-08 15:18
Jacky Zhong25-Feb-08 15:18 
GeneralRe: en.. Pin
Umut ŞİMŞEK25-Feb-08 20:27
Umut ŞİMŞEK25-Feb-08 20:27 
QuestionHow form application communicate with windows service Pin
gihan chamara10-Jan-08 2:58
gihan chamara10-Jan-08 2:58 
GeneralRe: How form application communicate with windows service Pin
Umut ŞİMŞEK25-Feb-08 20:29
Umut ŞİMŞEK25-Feb-08 20:29 
GeneralRe: How form application communicate with windows service Pin
bwilhite15-Mar-08 4:10
bwilhite15-Mar-08 4:10 
AnswerRe: How form application communicate with windows service Pin
evolved21-May-08 3:23
evolved21-May-08 3:23 
The best way to do this is to use .net remoting, or WCF if you are using .net 3.5.

Theres a lot of information on using remoting for this purpose, a quick google search for codeproject articles on this topic gave me: http://www.codeproject.com/KB/dotnet/winservicehost.aspx[^]
Questionis it possible to atomatically start the service during installation? Pin
Thanks for all the fish27-Dec-07 3:40
Thanks for all the fish27-Dec-07 3:40 
AnswerRe: is it possible to atomatically start the service during installation? Pin
Umut ŞİMŞEK27-Dec-07 5:22
Umut ŞİMŞEK27-Dec-07 5:22 
GeneralRe: is it possible to atomatically start the service during installation? Pin
Derek Casselman27-Dec-07 6:46
Derek Casselman27-Dec-07 6:46 
GeneralRe: is it possible to atomatically start the service during installation? Pin
Michael B. Hansen8-Jan-08 5:31
Michael B. Hansen8-Jan-08 5:31 
AnswerRe: is it possible to atomatically start the service during installation? Pin
Lab Monkey28-Jan-08 10:21
Lab Monkey28-Jan-08 10:21 
GeneralRe: is it possible to automatically start the service during installation? Pin
Tatworth29-Jun-08 6:16
Tatworth29-Jun-08 6:16 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.