I made this small windows service in c# and I believe I may have done something wrong with my ThreadPool code that prevents my Windows Service from completely starting. If you must know, the windows service seems to be running perfectly only that when looked upon the Services console, it still states that it is "starting". When I restarted my server, the service seem to have stopped again even though I have set it to Automatic startup.

Please see my code below:

protected override void OnStart(string[] args)
{
     int itemCount = itemList.Count;

     this.doneEvents = new ManualResetEvent[itemCount];
     for (int i = 0; i < itemCount; i++)
     {
         int oId = this.itemList[i];
         this.doneEvents[i] = new ManualResetEvent(false);

         ThreadPool.QueueUserWorkItem(data =>
         {
             while (this.activated)
             {
                 DateTime start = DateTime.Now;

                 // my code here

                 // choke point
                 TimeSpan duration = (DateTime.Now - start);
                 if (duration.Milliseconds < CONST_WAITMILLISECONDS)
                    Thread.Sleep((CONST_WAITMILLISECONDS - duration.Milliseconds));
              }

              this.doneEvents[i].Set(); // thread done

            }, oId);
         }

         WaitHandle.WaitAll(doneEvents);

}
link|improve this question

70% accept rate
1  
you have to code to one level of indirection. The call to OnStart() must return in a timely fashion (e.g., within 30 seconds or so). Otherwise, the OS will kill the service. Thus, you need to put the logic currently in your OnStart() method in a thread spawned by OnStart(), i.e., one level of indirection. – Matt Davis Jun 8 '11 at 3:09
feedback

2 Answers

up vote 1 down vote accepted

I think you could wrap the logic inside OnStart in a thread. This thread would be closed when you received an OnStop event.

Something like this:

Thread _ServiceThread;
protected override void OnStart(string[] args) { 
    _ServiceThread = new Thread(() => { /* your current OnStart logic here...*/ });
    _ServiceThread.Start();
}
protected override void OnStop() {
    _ServiceThread.Stop();
}
link|improve this answer
thanks, but i would consider this as a band-aid solution for the meantime. i really need to release this project now. – Martin Ongtangco Jun 8 '11 at 2:28
1  
+1 This is not a band-aid. It represents a canonical form of starting Windows services. – Matt Davis Jun 8 '11 at 22:49
thanks matt for the clarification. – Martin Ongtangco Jun 9 '11 at 15:45
feedback

You are blocking the OnStart call by WaitHandle.WaitAll(doneEvents);. Windows tries to start the service but times out because of WaitAll.

You need to let OnStart complete if you want Windows to treat the service as started.

link|improve this answer
hi, thanks for the quick response. what would be the better solution? – Martin Ongtangco Jun 8 '11 at 0:22
Remove WaitHandle.WaitAll(doneEvents); – Alex Aza Jun 8 '11 at 0:28
but i need this logic to constantly run the loop throughout its life. am i doing it wrong? – Martin Ongtangco Jun 8 '11 at 0:32
2  
It will be constantly running if you just remove WaitAll. Try this. – Alex Aza Jun 8 '11 at 0:33
i removed the Wait handle, the service stops after that. – Martin Ongtangco Jun 8 '11 at 0:46
show 6 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.