如何调试远程托管的 WCF Web 服务

发布于 2024-11-08 16:58:40 字数 215 浏览 0 评论 0原文

我是 WCF Web 服务开发的新手,我需要一些帮助。 我有一个用 C# 编写的简单 Web 服务,托管在远程服务器上(托管在 IIS 5.1 上)。 我已经为在我的工作站上运行的该 Web 服务编写了一个客户端应用程序。我能够毫无问题地连接到该服务。 但是,我希望能够调试 Web 服务。我需要能够单步调试代码、设置断点等。如何从本地计算机实现这一点?我正在使用 Visual Studio 2010。 先感谢您。

I am new to WCF web service development and I can use some help.
I have a simple web service written in C# that I'm hosting on a remote server (it's hosted on IIS 5.1).
I've written a client application for that web service that I'm running on my workstation.I am able to connect to the service without any problems.
However, I would like to be able to debug the web service.I need to be able to step through the code, set breakpoints, etc.How do I achieve that from my local machine? I'm using Visual Studio 2010.
Thank you in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

望她远 2024-11-15 16:58:41

我看到两种可能性:

  1. 本地调试:要进行调试,请在本地计算机上运行服务。如果你想在本地IIS上运行它,只需启动第二个实例(如果是VS2010)并附加到w3wp.exe进程(菜单工具->附加到进程)

  2. 远程调试:必须在服务器上安装并启动VS2010远程调试器。在开发盒上启动 VS2010 的第二个实例,并使用菜单“工具”->“连接到远程调试器”。附加到进程。

有关使用 VS2010 进行远程调试的详细信息,请参阅 msdn

I see two possibilities:

  1. Local debugging: For debugging, run your service on your local machine. If you want to run it on the local IIS, simply start a second instance if VS2010 and attach to the w3wp.exe process (menu Tools -> Attach to process)

  2. Remote Debugging: You have to install and start the VS2010 remote debugger on the server. Start a second instance of VS2010 on your development box and connect to the remote debugger with menu Tools -> Attach to process.

See msdn for more information about remote debugging with VS2010.

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