如何调试远程托管的 WCF Web 服务
我是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我看到两种可能性:
本地调试:要进行调试,请在本地计算机上运行服务。如果你想在本地IIS上运行它,只需启动第二个实例(如果是VS2010)并附加到w3wp.exe进程(菜单工具->附加到进程)
远程调试:必须在服务器上安装并启动VS2010远程调试器。在开发盒上启动 VS2010 的第二个实例,并使用菜单“工具”->“连接到远程调试器”。附加到进程。
有关使用 VS2010 进行远程调试的详细信息,请参阅 msdn。
I see two possibilities:
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)
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.