Is there a way to easier start stepping through code except to start the service through the Windows Service Controll Management and then attach the debugger to the thread? It's kind of cumbersome and I'm wondering if there is not a more straight-forward approach.
|
If I want to quickly debug the service, I just drop in a UPDATE: As an alternative to #if DEBUG pragmas, you can also use
On your OnStart, just call this method:
There, the code will only be enabled during Debug builds. While your at it, it might be useful to create a separate Build Configuration for service debugging. |
|||||||||||||||||||||
|
|
I also think having a separate "version" for normal execution and as a service is the way to go, but is it really required to dedicate a separate command line switch for that purpose? Couldn't you just do:
That would have the "benefit", that you can just start your app via doubleclick (OK, if you really need that) and that you can just hit F5 in Visual Studio (without the need to modify the project settings to include that Technically, the |
|||||||||||||||||||||
|
|
What I usually do is encapsulate the logic of the service in a separate class and start that from a 'runner' class. This runner class can be the actual service or just a console application. So your solution has (atleast) 3 projects:
|
|||||
|
|
When I set up a new service project a few weeks ago I found this post. While there are many great suggestions, I still didn't find the solution I wanted: The possibility to call the service classes' The solution I came up with uses the
The
This is all the code required, but I also wrote walkthrough with explanations. |
|||||||||||||||
|
|
What I used to do was to have a command line switch which would start the program either as a service or as a regular application. Then, in my IDE I would set the switch so that I could step through my code. With some languages you can actually detect if it's running in an IDE, and perform this switch automatically. What language are you using? |
|||
|
|
|
UPDATE This approach is by far the easiest: http://www.codeproject.com/KB/dotnet/DebugWinServices.aspx I leave my original answer below for posterity. My services tend to have a class that encapsulates a Timer as I want the service to check at regular intervals whether there is any work for it to do. We new up the class and call StartEventLoop() during the service start-up. (This class could easily be used from a console app too.) The nice side-effect of this design is that the arguments with which you set up the Timer can be used to have a delay before the service actually starts working, so that you have time to attach a debugger manually.
Also I used to do the following (already mentioned in previous answers but with the conditional compiler [#if] flags to help avoid it firing in a Release build). I stopped doing it this way because sometimes we'd forget to build in Release and have a debugger break in an app running on a client demo (embarrasing!).
|
|||||
|
|
You can also start the service through the command prompt (sc.exe). Personally, I'd run the code as a stand-alone program in the debugging phase, and when most bugs are ironed out, change to running as service. |
|||
|
|
|
I think it depends on what OS you are using, Vista is much harder to attach to Services, because of the separation between sessions. The two options I've used in the past are:
Hope this helps. |
|||
|
|
|||||
|
|
When I write a service I put all the service logic in a dll project and create two "hosts" that call into this dll, one is a Windows service and the other is a command line application. I use the command line application for debugging and attach the debugger to the real service only for bugs I can't reproduce in the command line application. I you use this approach just remember that you have to test all the code while running in a real service, while the command line tool is a nice debugging aid it's a different environment and it doesn't behave exactly like a real service. |
|||
|
|
|
Sometimes it is important to analyze what's going on during the start up of the service. Attaching to the process does not help here, because you are not quick enough to attach the debugger while the service is starting up. The short answer is, I am using the following 4 lines of code to do this:
These are inserted into the
For those who haven't done it before, I have included detailed hints below, because you can easily get stuck. The following hints refer to Windows 7x64 and Visual Studio 2010 Team Edition, but should be valid for other environments, too. Important: Deploy the service in "manual" mode (using either the Because of the Afterwards, escpecially in Windows 7 UAC might prompt you to enter admin credentials. Enter them and proceed with "Yes":
After that, the well known Visual Studio Just-In-Time Debugger window appears. It asks you if you want to debug using the delected debugger. Before you select "Yes", select that you don't want to open a new instance (2nd option) - a new instance would not be helpful here, because the source code wouldn't be displayed. So you select the Visual Studio instance you've opened earlier instead:
After you have clicked "Yes", after a while Visual Studio will show the yellow arrow right in the line where the Pressing F5 continues execution immediately, until the next breakpoint you have prepared is reached. Hint: To keep the service running, select Debug -> Detach all. This allows you to run a client communicating with the service after it started up correctly and you're finished debugging the startup code. If you press Shift+F5 (stop debugging), this will terminate the service. Instead of doing this, you should use the Service Control Panel to stop it. Note that
|
||||
|
|
|
When developing and debugging a Windows service I typically run it as a console application by adding a /console startup parameter and checking this. Makes life much easier.
|
|||
|
How about Debugger.Break() in the first line? |
|||
|
For routine small-stuff programming I've done a very simple trick to easily debug my service: On start of the service, I check for a command line parameter "/debug". If the service is called with this parameter, I don't do the usual service startup, but instead start all the listeners and just display a messagebox "Debug in progress, press ok to end". So if my service is started the usual way, it will start as service, if it is started with the command line parameter /debug it will act like a normal program. In VS I'll just add /debug as debugging parameter and start the service program directly. This way I can easily debug for most small kind problems. Of course, some stuff still will need to be debugged as service, but for 99% this is good enough. |
|||
|
|
|
To debug Windows Services I combine GFlags and a .reg file created by regedit.
Or save the following snippets and replace servicename.exe with the desired executable name. debugon.reg: Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\servicename.exe] "GlobalFlag"="0x00000000" "Debugger"="vsjitdebugger.exe" debugoff.reg: Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\servicename.exe] "GlobalFlag"="0x00000000" |
|||
|
|
I use a variation on JOP's answer. Using command line parameters you can set the debugging mode in the IDE with project properties or through the Windows service manager.
|
||||
|
|
|
I like to be able to debug every aspect of my service, including any initialization in OnStart(), while still executing it with full service behavior within the framework of the SCM... no "console" or "app" mode. I do this by creating a second service, in the same project, to use for debugging. The debug service, when started as usual (i.e. in the services MMC plugin), creates the service host process. This gives you a process to attach the debugger to even though you haven't started your real service yet. After attaching the debugger to the process, start your real service and you can break into it anywhere in the service lifecycle, including OnStart(). Because it requires very minimal code intrusion, the debug service can easily be included in your service setup project, and is easily removed from your production release by commenting out a single line of code and deleting a single project installer. Details: 1) Assuming you are implementing
2) Add the real service AND the debug service to the project installer for the service project:
Both services (real and debug) get included when you add the service project output to the setup project for the service. After installation, both services will appear in the service.msc MMC plugin. 3) Start the debug service in MMC. 4) In Visual Studio, attach the debugger to the process started by the debug service. 5) Start the real service and enjoy debugging. |
||||
|
|
|
What you need is thinking of Simplifying Windows Services |
||||
|
|
|
This is quite a bit after the question, but might be useful for future reference. If you can, I'd suggest using the excellent TopShelf project. It makes development and debugging of a Windows Service much easier and adds makes deployment somewhat easier too. Check it out: http://topshelf-project.com/ |
||||
|
|




