将Windows服务作为控制台运行的最佳方法是什么?
我目前的想法是传入一个“/ exe”参数并执行Windows服务的工作,然后调用Application.Run()。
我这样做的原因是为了更好地调试Windows服务并允许更轻松地分析代码。该服务基本上托管.NET远程对象。
答案 0 :(得分:6)
我就是这样做的。为控制台应用和服务提供相同的.exe。要作为控制台应用程序启动,它需要命令行参数-c。
private static ManualResetEvent m_daemonUp = new ManualResetEvent(false);
[STAThread]
static void Main(string[] args)
{
bool isConsole = false;
if (args != null && args.Length == 1 && args[0].StartsWith("-c")) {
isConsole = true;
Console.WriteLine("Daemon starting");
MyDaemon daemon = new MyDaemon();
Thread daemonThread = new Thread(new ThreadStart(daemon.Start));
daemonThread.Start();
m_daemonUp.WaitOne();
}
else {
System.ServiceProcess.ServiceBase[] ServicesToRun;
ServicesToRun = new System.ServiceProcess.ServiceBase[] { new Service() };
System.ServiceProcess.ServiceBase.Run(ServicesToRun);
}
}
答案 1 :(得分:4)
代码项目网站有一个很棒的article,展示了如何在Visual Studio调试器中运行Windows服务,无需控制台应用程序。
答案 2 :(得分:2)
或
C:\> MyWindowsService.exe /?
MyWindowsService.exe /console
MyWindowsService.exe -console