在 Visual Studio 2008 中调试 Windows 服务程序的最佳方法是什么
我在 Windows 服务中使用 Microsoft 日志解析器。该程序可以在常规网页中运行,但是当我将代码放入 Windows 服务中时,它无法运行。我将断点放在 Windows 服务中,但是当我运行代码时,程序不会在断点处停止。因此,通过故障排除,我已将问题范围缩小到 Log Parser 软件和 Linq。因此,Linq 或日志解析器软件会造成问题。你们有什么想法吗?
I am using the Microsoft Log Parser in a Windows Service. The program works in a regular web page but when I put the code in a windows service it does not work. I put Breakponts in the windows service but when I run the code the program does not stop at the breakpoint. So through out my troubleshooting I have narrowed the problem down to the Log Parser software and Linq. So either Linq or the log parser software is creating the problem. Do you guys have any idea?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
发布评论
评论(4)
过去我已经通过多种方式完成了此操作,具体取决于程序的运行方式。我认为最简单的方法是在 Debugger.Launch() 周围使用 if #DEBUG 预处理器指令来完成,这样当您构建优化的项目时, Debugger.Launch() 调用将不会被编译到程序集中。
我们完成此任务的一种方法是使用 System.Windows.Forms.MessageBox.Show("attach"),它允许我们在显示“attach”对话框时手动附加到调试器。
我不喜欢的最后一种方法是根据传入的命令行参数更改服务的行为。基本上选择不在特定参数被触发时使用 ServiceBase.Run 启动服务,而是调用封装该行为的类/服务的主要功能。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
您需要将调试器直接附加到 Windows 服务。这可能对您有帮助: http://msdn.microsoft .com/en-us/library/7a50syb3%28VS.80%29.aspx。
You need to attach your debugger directly with Windows Services. This might help you: http://msdn.microsoft.com/en-us/library/7a50syb3%28VS.80%29.aspx.