我已经创建了一个.NET Windows服务并从bin / debug文件夹安装了调试版本(是的,我知道这不是一个好方法,但我只是希望能够测试它并附加调试器)。
该服务基本上在无限循环中运行,检查FTP目录中的文件,处理它们,睡眠一分钟然后循环。
当我尝试启动服务时,我收到以下错误
Error 1053: The service did not respond to the start or control request in a timely fashion
进一步检查时,服务正在完成第一个循环,然后在第一个线程休眠期间超时。因此,我对如何启动服务感到有些困惑。是我(缺乏)对线程的理解导致了这个吗?
我的开始代码是
protected override void OnStart(string[] args)
{
eventLog.WriteEntry("Service started");
ThreadStart ts = new ThreadStart(ProcessFiles);
workerThread = new Thread(ts);
workerThread.Start();
}
在ProcessFiles函数中,一旦循环完成,我只需要
eventLog.WriteEntry("ProcessFiles Loop complete");
Thread.Sleep(new TimeSpan(0,1,0));
当我检查事件日志时,“ProcessFiles循环完成”日志就在那里,但这是服务超时之前的最后一个事件,无法启动。
有人可以解释我做错了吗?
我在ProcessFiles函数中处理循环的方式如下
while (!this.serviceStopped)
{
// Do Stuff
eventLog.WriteEntry("ProcessFiles Loop complete");
Thread.Sleep(new TimeSpan(0,1,0));
}
干杯
斯图尔特
答案 0 :(得分:2)
当我检查事件日志时,“ProcessFiles循环完成”日志就在那里......
您可能有一个文件处理代码,在服务超时之前不会返回。您尝试在间隔后执行某项任务,最好使用System.Timers.Timer或System.Windows.Forms.Timer而不是循环来重复执行某项任务。
测试是否存在循环问题,可以使用sleep语句将循环限制为单次迭代,并检查服务是否已启动。
protected override void OnStart(string[] args)
{
aTimer = new System.Timers.Timer(10000);
aTimer.Elapsed += new ElapsedEventHandler(OnTimedEvent);
aTimer.Interval = 60000;
aTimer.Enabled = true;
}
private static void OnTimedEvent(object source, ElapsedEventArgs e)
{
aTimer.Enabled = false;
// Put file processing code here.
aTimer.Enabled = true;
}
答案 1 :(得分:2)
卫生署。我刚刚意识到我在我的主程序方法中有以下代码,我用它来在VS中进行调试。显然,当我安装调试版本时,它在主线程上放置了无限超时。删除调试代码解决了这个问题。
#if DEBUG
AdvanceLinkService myService = new AdvanceLinkService();
myService.OnDebug();
System.Threading.Thread.Sleep(System.Threading.Timeout.Infinite);
#else
ServiceBase[] ServicesToRun;
ServicesToRun = new ServiceBase[]
{
new AdvanceLinkService()
};
ServiceBase.Run(ServicesToRun);
#endif