vote up 0 vote down star

When I sign the assemblies in my service with the Verisign signtool.exe, it fails to start when the machine starts, on a machine running Windows 2003 Server. The event log has two events:

"Timeout (30000 milliseconds) waiting for the xxx Service service to connect." and "The xxx Service service failed to start due to the following error: The service did not respond to the start or control request in a timely fashion."

It starts fine once the machine is running. It starts fine in XP and Vista. It starts fine when the assemblies are unsigned.

flag

2 Answers

vote up 1 vote down

Authenticode signing your assemblies can have a very negative effect on cold startup. See this KB article for details.

http://support.microsoft.com/default.aspx/kb/936707

link|flag
Although installing a patch where MS says it is not tested doesn't sound very appealing on a production system... – divo Feb 16 at 22:25
vote up 0 vote down

As spacedog said, Authenticode can have a bad impact on startup time. So the question is what are you signing? It should be sufficient to Authenticode sign only your service executable which in turn must only reference strong named assemblies. Thus the overhead of verifying the Authenticode signature.

You could install your assemblies to the GAC - if possible - this will slightly boost startup performance because the strong name validation is skipped (see Authenticode and Assemblies) and / or you could also ngen your assemblies if startup time still is an issue.

From the answer to Windows service startup timeout by Romulo A. Ceccon:

It's good practice to finish starting your service as fast as possible. So, during the start state, do only what you absolutely need to acknowledge it started successfully; and do the rest later. If the start is still a lengthy process, use SetServiceStatus periodically to inform the Service Control Manager that you have not yet finished, so it does not time-out your service.

In addition to SetServiceStatus you could also try to tell the Service Control Manager (SCM) that the service needs additional time to start up by calling ServiceBase.RequestAdditionalTime.

link|flag
This answer seems to conflate Authenticode signatures with strong name signatures? – Dave Feb 16 at 22:05
1  
Nope. In what way? – divo Feb 16 at 22:16
(continued) When using Authenticode it is sufficient that the referenced assemblies are strong-name signed. I was trying to find a reference, unfortunately I only found this post: social.msdn.microsoft.com/Forums/en-US/… – divo Feb 16 at 22:28

Your Answer

Get an OpenID
or

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