vote up 0 vote down star

Hi everyone,

I'm curious to know how I would go about setting up my service to stop cleanly on the server the service will be installed on. For example when I have many clients connecting and doing operations every minute and I want to shut-down the service for maintenance, how can I do this in the "OnStop" event of the service to then let the main service host to deny any new client connections and let the current connections finish before it actually shuts down its services to the client, this will ensure data isn't corrupted on the server as the server shuts down.

Right now I'm not setup as a singleton because I need scalability in the service. So I would have to somehow get my service host to do this independently of knowing how many instances are created of the service class.

I hope I explain myself good enough, if not, let me know, I'll try to explain better.

Thanks, Scott

flag

70% accept rate

2 Answers

vote up 1 vote down

You just have to call Dispose on the ServiceHost instance that you create. Once you do that, you will not accept any more clients and the service will continue to finish the operations for clients that are already connected.

link|flag
Would "serviceHost.Close()" be called before "serviceHost.Dispose()" or do all I need is "serviceHost.Dispose()" as it'll take care of the .Close? – Sentax Feb 3 at 22:33
@Sentax: They are the same. You can call either/or. – casperOne Feb 3 at 22:50
My serviceHost doesn't have a .Dispose method, I'm calling the .Close method in the OnStop event. I tried this when a client was connected and doing things and it still shut down the server and the client was yet to be disconnected. – Sentax Feb 4 at 8:26
@Sentax: ServiceHost implements IDisposable, which has a Disposable method. You might be running into issues with the timeout expiring when shutting down the service. If you want to forcably abort, then you have to abort on the service host (there should be an Abort method). – casperOne Feb 4 at 18:44
vote up 0 vote down

I've been wondering the same thing. I found this article which has a pretty in-depth description of how to properly Close/Dispose as ServiceHost or Client.

http://www.danrigsby.com/blog/index.php/2008/02/26/dont-wrap-wcf-service-hosts-or-clients-in-a-using-statement/

link|flag

Your Answer

Get an OpenID
or

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