如何捕获启动Windows服务时发生的异常。即使我在服务的Onstart()方法中抛出异常,我也无法在下面的代码中获得异常。
public class InterOpIntegrationWinService : ServiceBase
{
protected override void OnStart(string[] args)
{
throw new InvalidOperationException(message);
}
}
调用线程代码
try
{
using (ServiceController controller = new ServiceController())
{
controller.ServiceName = objServiceConfig.ServiceName;
controller.Start();
System.Windows.Forms.Application.DoEvents();
//controller.WaitForStatus(ServiceControllerStatus.Running, new TimeSpan(0, 0, 15));
//controller.WaitForStatus(ServiceControllerStatus.Running);
//if (!string.IsNullOrEmpty(LogUtilities.ServiceOnStartException))
//{
// MessageBox.Show("Error with starting service : " + LogUtilities.ServiceOnStartException);
// LogUtilities.ServiceOnStartException = string.Empty;
//}
}
}
catch (System.InvalidOperationException InvOpExcep)
{
DisplayError(InvOpExcep.Message);
LogUtilities.DisplayMessage("Failed to start service. " + LogUtilities.ServiceOnStartException, InvOpExcep);
LogUtilities.ServiceOnStartException = string.Empty;
}
catch (Exception ex)
{
DisplayError(ex.Message);
LogUtilities.DisplayMessage("Failed to start service. " + LogUtilities.ServiceOnStartException, ex);
LogUtilities.ServiceOnStartException = string.Empty;
}
我在onstart()方法中检查应用程序许可证,如果失败则抛出许可错误。我想将此共享给我的调用线程,以便我可以在DialogBox中显示该消息。如果我无法在调用过程中处理异常,那么有关如何执行此操作的任何想法。
答案 0 :(得分:2)
将您的服务分成(至少)两个组件 - 以某种形式处理IPC的组件(例如远程处理,WCF端点,REST服务等)和实现其实际的(一个或多个)组件工作
如果许可检查失败,请不要启动其他组件 - 但仍然启动提供IPC的组件。在启动服务(现在应该始终至少开始)之后,基于表单的应用程序可以连接到服务并且(通过您想要的任何方式)确定服务当前拒绝提供由于许可检查失败而提供的任何功能。