如何将调试器附加到 WebService?

发布于 2024-12-02 04:09:55 字数 425 浏览 1 评论 0原文

我有 2 个项目在同一台计算机上运行。(在 Windows XP 中运行)

  1. Windows 窗体应用程序 .Net 2.0 在 VS 2005 中运行
  2. 在 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)

  1. Windows Forms Application .Net 2.0 running in VS 2005
  2. 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

蛮可爱 2024-12-09 04:09:56

打开您的 WebService 项目,选择“调试”-“附加到进程...”。选择w3wp.exe,然后单击“附加”

Open your WebService Project, choose "Debug"-"Attach To Process...". Select w3wp.exe and then click on "Attach"

撩动你心 2024-12-09 04:09:55

您可以通过以下方式将 Visual Studio 调试器附加到进程:

Debug > Attach to Process > Attach

选择附加到进程后,您可以浏览可用进程以查找所需的进程。如果您的服务正在使用符号进行调试,那么应该可以工作。然后您可以在代码中添加中断。

You can attach the Visual Studio debugger to a process by:

Debug > Attach to Process > Attach

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.

べ繥欢鉨o。 2024-12-09 04:09:55

您可以附加到所有 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文