vote up 1 vote down star

I'm writing a windows service in .net 2.0.

What should I do within the OnStart method if for some reason I don't want it to start? Can I simply call the Stop() method of the base class (ServiceBase)? I've tried that and am getting some funny memory access exceptions. Is it required to start a separate thread to call the Stop() method?

flag

37% accept rate

3 Answers

vote up 5 vote down check

Why do you want to do that? If there's an error, log it in event log and throw an exception. Your service won't be started and the user will be informed that something bad happened.

link|flag
Indeed, if you throw an exception, the service won't get started. Windows Services handles this all for you. – Noldorin May 20 at 11:56
There's lots of reasons why one might not want a service to start! So perhaps you're not really asking why, but rather suggesting the answer is to throw an exception? How about setting ServiceBase.ExitCode - is that advisable/necessary? – Rory May 20 at 12:00
@Rory: Failing to start a service is a different thing from starting and stopping immediately. I'm against starting successfully and quietly stopping. ExitCode will be logged in the event log so you might want to consider setting it. It's not required though. – Mehrdad Afshari May 20 at 12:09
vote up 0 vote down

You could use Environment.FailFast(). Just be aware that it ignores any try-catch-finally blocks.

link|flag
vote up 0 vote down

Use a ServiceController and stop it via that then immediately return.

link|flag

Your Answer

Get an OpenID
or

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