在 Visual Studio 2008 中远程调试 ASP.NET Web 服务
我已经设置了远程调试服务,确保设置了所有必要的权限(据我所知)。远程调试监视器甚至可以看到我正在连接。但我无法在部署的服务中遇到任何断点!
服务器是同一域中的虚拟机。该项目是一个 ASP.NET Web 服务项目,在 web.config 中使用 debug=true 构建。
我做错了什么?当我在 Visual Studio 中设置断点时,它只是被标记为“不会命中此断点。没有符号...”
I've set up the Remote Debugging service, made sure all necessary permissions are set (as far as I can tell). The remote debugging monitor even sees me connecting. But I can't hit any breakpoints in my deployed service!
The server is a VM on the same domain. The project is an ASP.NET Web Service project built with debug=true in the web.config.
What am I doing wrong? When I set a breakpoint in Visual Studio it just gets marked as "This breakpoint will not be hit. No symbols..."
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
确保 Web 服务项目正在调试模式下构建。
Make sure the web service project is being built in Debug mode.