如何将调试器附加到 WebService?
我有 2 个项目在同一台计算机上运行。(在 Windows XP 中运行)
- Windows 窗体应用程序 .Net 2.0 在 VS 2005 中运行
- 在 VS 2010 中的 .Net 4.0 中运行的 Web 服务(不是 WCF)
当我在 Web 服务中按 F5 时,它在调试中运行模式并使用 IIS 设置(所以我猜它将新代码复制到 IIS ...这仍然在同一台机器上)
所以我可以让它们都在调试中运行模式(按 F5)。然而,Windows 应用程序会调用此 Web 服务。当它执行此操作时,我希望它能够命中 webservice 中的断点,以便我可以进行调试。
我不知道该怎么做。我不确定我需要附加什么,我应该在哪里附加它(通过 VS 2010 或 VS 2005)。
I have 2 projects running on the same machine.(running in Windows XP)
- Windows Forms Application .Net 2.0 running in VS 2005
- A webservice(not WCF) running in .Net 4.0 in VS 2010
When I hit F5 in my webserivce runs in debug mode and is setup with IIS(So I guess it copies the new code to the IIS ...This is still on the same machine)
So I can have them both running in debug mode(by press F5). However the windows application calls this webservice up. When it does this I would like it to hit my break points in the webservice so I can debug.
I am not sure how to do this. I am not sure what I need to attach, Where do I attach it(through VS 2010 or VS 2005).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
打开您的 WebService 项目,选择“调试”-“附加到进程...”。选择w3wp.exe,然后单击“附加”
Open your WebService Project, choose "Debug"-"Attach To Process...". Select w3wp.exe and then click on "Attach"
您可以通过以下方式将 Visual Studio 调试器附加到进程:
选择
附加到进程
后,您可以浏览可用进程以查找所需的进程。如果您的服务正在使用符号进行调试,那么应该可以工作。然后您可以在代码中添加中断。You can attach the Visual Studio debugger to a process by:
Where after you select
Attach to Process
you browse the available processes for the one you're looking for. If you service is running in Debug with symbols, that should work. You can then put breaks in your code.您可以附加到所有 w3wp.exe 进程(IIS 应用程序池)。这是通过“调试”菜单中的“附加到进程...”选项来完成的。
You can attach to all w3wp.exe processes (IIS app pools). This is done through the "Attach to process..." option in the "Debug" menu.