跟踪不适用于 .NET 2.0 Web 服务

发布于 2024-08-03 01:22:53 字数 314 浏览 6 评论 0原文

我有一个用 Visual Studio 2005 编写的 Web 服务。我的 web.config 文件包含以下内容:

<system.diagnostics>
    <trace autoflush="true" indentsize="4" />
</system.diagnostics>

但是对 System.Diagnostics.Trace.WriteLine 的任何调用都会被忽略。当我单步执行代码时,这些行将被跳过。

我还有其他方法可以打开跟踪吗?我如何知道跟踪被关闭的原因?

I have a web service written with Visual Studio 2005. My web.config file contains this:

<system.diagnostics>
    <trace autoflush="true" indentsize="4" />
</system.diagnostics>

But any call to System.Diagnostics.Trace.WriteLine is ignored. When I step through my code, those lines are skipped over.

Is there another way I should be turning on tracing? How can I tell why tracing is turned off?

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

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

发布评论

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

评论(1

风吹雪碎 2024-08-10 01:22:53

我必须将其添加到我的 web.config 中:

<system.codedom>
  <compilers>
    <compiler language="c#;cs;csharp"
              extension=".cs"
              compilerOptions="/d:TRACE"
              type="Microsoft.CSharp.CSharpCodeProvider, System, Version=2.0.3500.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" warningLevel="1" />
  </compilers>
</system.codedom>

我从 Microsoft 的 Web 服务故障排除文章

I had to add this to my web.config:

<system.codedom>
  <compilers>
    <compiler language="c#;cs;csharp"
              extension=".cs"
              compilerOptions="/d:TRACE"
              type="Microsoft.CSharp.CSharpCodeProvider, System, Version=2.0.3500.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" warningLevel="1" />
  </compilers>
</system.codedom>

I got that from Microsoft's Troubleshooting Web Services article.

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