C# Windows Services - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T21:27:11Z http://stackoverflow.com/feeds/question/513514 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/513514/c-windows-services 3 C# Windows Services Michael G 2009-02-04T21:46:45Z 2009-02-04T23:21:51Z <p>Hey guys,</p> <p>I'm wanting to learn about creating windows services with C#. I've googled around a bit and I've found a few tutorials. I was wondering if there are any frameworks that I could use that would help with designing the services. I've searched various online book stores for books on the subject; however I've come up short. </p> <p>If you could please recommend some of the following:</p> <ul> <li>books dedicated on creating and debugging windows services</li> <li>SOA design patterns for C#</li> </ul> <p>any recommendations would be greatly appreciated!</p> <p>please note that i am not developing web applications, these services will be installed as components and distributed across servers.</p> <p>Thanks!</p> http://stackoverflow.com/questions/513514/c-windows-services/513532#513532 7 Answer by Robert Wagner for C# Windows Services Robert Wagner 2009-02-04T21:53:34Z 2009-02-04T21:53:34Z <p>When you say "Windows Services" I assume you are talking about background Windows programs in the services.msc snap in. You mention SOA though, so are you talking about a distributed service using Component Services?</p> <p>Windows services are pretty easy. Start with the a Windows Service project in Visual Studio, which gives you the framework. Then fill in the missing bits. The help files also give some good samples.</p> <p>For debugging, I use the following so that I can run it as a console app as well:</p> <pre><code>static void Main(string[] args) { if (Environment.UserInteractive) { try { Console.WriteLine(Properties.Resources.Starting); // Interactive, run as a console app MyService controller = new MyService(); controller.OnStart(args); Console.WriteLine(Properties.Resources.Started); Console.Read(); Console.WriteLine(Properties.Resources.Stopping); controller.OnStop(); Console.WriteLine(Properties.Resources.Stopped); } catch (Exception ex) { Console.WriteLine(ex.Message); Console.WriteLine(); Console.WriteLine(ex.StackTrace); } Console.Read(); } else { // Non-interactive, run as a windows service ServiceBase.Run(new MyService()); } } </code></pre> http://stackoverflow.com/questions/513514/c-windows-services/513539#513539 0 Answer by scottm for C# Windows Services scottm 2009-02-04T21:55:13Z 2009-02-04T21:55:13Z <p>Just create a new project in Visual Studio (or Visual Studio Express) and select "Windows Service" as the project type. This will give you the basic OnStart, OnStop framework you need. Your class will be setup to inherit from ServiceBase with overriden OnStart and OnStop methods ready for you to fill in.</p> http://stackoverflow.com/questions/513514/c-windows-services/513543#513543 1 Answer by flesh for C# Windows Services flesh 2009-02-04T21:55:59Z 2009-02-04T21:55:59Z <p>The WCF framework brings Web Services, Remoting and Tcp based services under the same roof. If you are building distributed services this is almost certainly the place to start. </p> <p>I found the WCF chapter in this <a href="http://rads.stackoverflow.com/amzn/click/1590598849" rel="nofollow">book</a> a really good intro. Clear, well written and informative. <a href="http://rads.stackoverflow.com/amzn/click/0596521308" rel="nofollow">This</a> is the more in depth WCF book to check out.</p> http://stackoverflow.com/questions/513514/c-windows-services/513857#513857 4 Answer by AlexDuggleby for C# Windows Services AlexDuggleby 2009-02-04T23:21:51Z 2009-02-04T23:21:51Z <p><em>(As it so happens I literally just finished a windows service on a project of mine.)</em></p> <p>I used a framework that is "in development" but so far has worked well. It's called <a href="http://codebetter.com/blogs/dru.sellers/archive/2009/01/11/topshelf.aspx" rel="nofollow">Topshelf</a> (n.b. it depends on StructureMap &amp; log4net).</p> <p>It handles all the messy stuff with Windows Services, such as dependencies, credentials and so on. Basically you create a configuration, sort of like this (more examples in the link):</p> <pre><code>var cfg = RunnerConfigurator.New(x =&gt; { x.SetDisplayName("Timeout Service"); x.SetServiceName("mt_timeout"); x.ConfigureService&lt;TestService&gt;(c=&gt; { c.WhenStarted(s =&gt; s.Start()); c.WhenStopped(s =&gt; s.Stop()); c.WhenPaused(s =&gt; { }); c.WhenContinued(s =&gt; { }); }); x.DoNotStartAutomatically(); // Multiple options available here, including prompt x.RunAsLocalSystem(); x.DependsOn("ServiceName"); }); Runner.Host(cfg, args) </code></pre> <p>Apart from doing a lot of stuff for you, it has a two distinct advantages:</p> <ul> <li>the installer is built in, so you can just run your "app.exe /install" and it will install (without using the .NET utility InstallService.exe - part of the exe).</li> <li>you can run the app as a console app for debugging. This is a huge advantage over other methods such as Thread.Sleep at the beginning of your service to give enough time for debugger to attach (or options like <a href="http://stackoverflow.com/questions/75763/how-can-i-debug-a-process-1-exe-running-under-another-process-2-exe/75814#75814">this</a>). The latter may cause you some headaches when you install the service, debug the app, dettach the debugger and try to uninstall the service. In some cases (when the app was left running, some rogue thread or so) the service will be marked for deletion, meaning you can't install a new version with the same name, but you can't remove the old one without a reboot. </li> </ul> <p>(A last word: I cannot compare this two any other win service framework, because frankly so far I did it myself... kind of "not-invented-here" syndrome :| )</p> <p>Hope that helps</p>