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.
|
11
|
|
|
|
|
|
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. |
|||
|
|
|
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. |
||
|
|
|
|
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? |
||
|
|
|
|
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:
|
||
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
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? |
||
|
|
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!).
|
||
|
|
|
What you need is thinking of Simplifying Windows Services |
|||
|
|
|
|
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 "/console" Option). Technically, the "Environment.UserInteractive" checks if the WSF_VISIBLE Flag is set for the current window station, but is there any other reason where it would return false, apart from being run as a (non-interactive) service? |
||
|
|
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" |
||
|
|
|
|
|
||
|
|
|
|
|||
|
|
|
|
Thanks everyone! It worked Great! |
|||
|
|
|
|
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.
|
|||
|
|
