How can I reject a Windows "Service Stop" request in ATL 7?

Posted by Matt Dillard on Stack Overflow See other posts from Stack Overflow or by Matt Dillard
Published on 2010-04-08T16:39:16Z Indexed on 2010/04/08 16:43 UTC
Read the original article Hit count: 343

Filed under:
|
|

I have a Windows service built upon ATL 7's CAtlServiceModuleT class. This service serves up COM objects that are used by various applications on the system, and these other applications naturally start getting errors if the service is stopped while they are still running.

I know that ATL DLLs solve this problem by returning S_OK in DllCanUnloadNow() if CComModule's GetLockCount() returns 0. That is, it checks to make sure no one is currently using any COM objects served up by the DLL. I want equivalent functionality in the service.

Here is what I've done in my override of CAtlServiceModuleT::OnStop():

void CMyServiceModule::OnStop()
{
    if( GetLockCount() != 0 ) {
        return;
    }

    BaseClass::OnStop();
}

Now, when the user attempts to Stop the service from the Services panel, they are presented with an error message:

Windows could not stop the XYZ service on Local Computer. The service did not return an error. This could be an internal Windows error or an internal service error. If the problem persists, contact your system administrator.

The Stop request is indeed refused, but it appears to put the service in a bad state. A second Stop request results in this error message:

Windows could not stop the XYZ service on Local Computer.

Error 1061: The service cannot accept control messages at this time.

Interestingly, the service does actually stop this time (although I'd rather it not, since there are still outstanding COM references).

I have two questions:

  1. Is it considered bad practice for a service to refuse to stop when asked?
  2. Is there a polite way to signify that the Stop request is being refused; one that doesn't put the Service into a bad state?

© Stack Overflow or respective owner

Related posts about windows-services

Related posts about atl