IIS7中远程调试Silverlight服务器

发布于 2024-12-08 12:07:15 字数 222 浏览 0 评论 0原文

我的 Silverlight 应用程序的服务器端出现问题。它位于我的一项 WCF 服务中。该应用程序在我的开发机器上运行良好,但在测试服务器上失败。我想找到一种从我的开发机器远程调试我的服务的方法。使用 Visual Studio 2010 可以实现这一点吗?

由于 WCF 服务和服务器端应用程序托管在 IIS7 中,因此我不知道如何附加以启动它。

非常感谢任何帮助,

-斯科特

I have a problem on the server side of my Silverlight application. It's in one of my WCF Services. The app works fine on my dev machine, but is failing on the test server. I'd like to find a way to remote debug my service from my dev machine. Is this possible using Visual Studio 2010?

Since the WCF Service and Server side application is hosted within IIS7, I don't know how to attach to get it started.

Any help is greatly appriciated,

-Scott

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

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

发布评论

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

评论(2

温柔一刀 2024-12-15 12:07:15

在 Visual Studio 2010 中:

  1. 在服务器上安装 Microsoft Visual Studio 远程调试监视器 (MSVSMON.exe)
  2. 调试菜单...附加到进程 -
  3. 选择传输到远程或默认
  4. 选择服务器名称的限定符
  5. 选择要附加到的进程在可用进程列表中,然后按附加

In Visual Studio 2010:

  1. Install the Microsoft Visual Studio Remote Debugging Monitor on the server (MSVSMON.exe)
  2. Debug Menu...Attach to process -
  3. select the Transport to Remote or Default
  4. Select the Qualifier to the server name
  5. Select the process to attach to in the Available Processes list and press Attach
狂之美人 2024-12-15 12:07:15

将其放入您的 web.config 文件中:

<system.diagnostics>     
    <sources> 
      <source name="System.ServiceModel" 
              switchValue="Information, ActivityTracing" 
              propagateActivity="true"> 
        <listeners> 
          <add name="traceListener" 
              type="System.Diagnostics.XmlWriterTraceListener" 
              initializeData= "c:\temp\WEBTraces.log" /> 
        </listeners> 
      </source> 
    </sources> 
  </system.diagnostics> 

在此处阅读更多内容:http:// msdn.microsoft.com/en-us/library/ms733025.aspx

Put this in your web.config file:

<system.diagnostics>     
    <sources> 
      <source name="System.ServiceModel" 
              switchValue="Information, ActivityTracing" 
              propagateActivity="true"> 
        <listeners> 
          <add name="traceListener" 
              type="System.Diagnostics.XmlWriterTraceListener" 
              initializeData= "c:\temp\WEBTraces.log" /> 
        </listeners> 
      </source> 
    </sources> 
  </system.diagnostics> 

Read more of this here: http://msdn.microsoft.com/en-us/library/ms733025.aspx

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