我根据这篇文章构建了我的windows服务应用程序。
https://docs.microsoft.com/en-us/dotnet/framework/windows-services/walkthrough-creating-a-windows-service-application-in-the-component-designer
MyService.cs
和
ProjectInstaller.cs
Designer.cs
以及
.resx
文件。
在构建项目之后,我将/bin/Debug下的所有内容复制到服务器,并运行
InstallUtil
我可以在服务列表中看到我的服务,但是
我的Program.cs文件非常简单
public static void Main()
{
#if DEBUG
MyService mySvc = new MyService();
mySvc.OnDebug();
System.Threading.Thread.Sleep(System.Threading.Timeout.Infinite);
#else
ServiceBase[] ServicesToRun;
ServicesToRun = new ServiceBase[]
{
new MyService()
};
ServiceBase.Run(ServicesToRun);
#endif
}
在
MyService.cs公司
public partial class MyService : ServiceBase
{
private bool stopping = false;
private Int32 timeInterval = 0;
private ManualResetEvent stoppedEvent;
public static IServiceProvider svcProvider = null;
public MyService()
{
InitializeComponent();
stopping = false;
stoppedEvent = new ManualResetEvent(false);
LoadDIStartup();
}
public void OnDebug()
{
StartServiceWorkerMainProcess();
}
protected override void OnStart(string[] args)
{
stopping = false;
StartServiceWorkerMainProcess();
}
protected override void OnStop()
{
stopping = true;
StopServiceWorkerMainProcess();
stoppedEvent.WaitOne();
}
public void StartServiceWorkerMainProcess()
{
try
{
timeInterval = AppConfig.TimeInterval;
ThreadPool.QueueUserWorkItem(new WaitCallback(ServiceWorkerSub));
}
catch (Exception e)
{
AppLogger.LogError(" Error while launching the WorkerSub thread. " + "\n" + e.Message + "\n" + e.InnerException + " \n" + e.StackTrace + "\n" + e.Source + "\n");
}
}
public void StopServiceWorkerMainProcess()
{
AppLogger.LogInfo(" Service Stopped at " + DateTime.Now.ToShortDateString() + " " + DateTime.Now.ToShortTimeString() + "\n");
}
private async void ServiceWorkerSub(object state)
{
try
{
while (!stopping)
{
try
{
AppLogger.LogInfo("DONE. About to sleep.");
}
catch (Exception e)
{
AppLogger.LogError(" Error. " + "\n" + e.Message + "\n" + e.InnerException + " \n" + e.StackTrace + "\n" + e.Source + "\n");
}
Thread.Sleep(timeInterval);
}
stoppedEvent.Set();
}
catch (Exception e)
{
AppLogger.LogError(" Error in ServiceWorkerSub. " + "\n" + e.Message + "\n" + e.InnerException + " \n" + e.StackTrace + "\n" + e.Source + "\n");
}
}
private static void LoadDIStartup()
{
}
}
在设计器视图中,MyService.cs有一个
serviceController1
TestService
. ProjectInstaller.cs有一个
serviceProcessInstaller1
和
serviceInstaller1
测试服务
也。
项目内部有几个属性文件,并且在本地运行良好。
我的设置有问题吗?