查看本地 ASP.NET 开发服务器的传入请求

发布于 2024-10-11 17:14:13 字数 150 浏览 1 评论 0原文

有没有办法查看本地 ASP.NET 开发服务器的传入请求?

我正在从 Android 应用程序向本地开发服务器进行 WCF 服务调用。一路上某个地方出了问题,我需要查看服务器收到的数据。

编辑: Android 应用程序也是本地的......在模拟器中。

Is there a way to view incoming requests to a local ASP.NET development server?

I'm making wcf service calls from a android app to a local development server. Something goes wrong somewhere along the way, and I need to view what data the server recieves.

Edit: The android app is local too... in an emulator.

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

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

发布评论

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

评论(2

始于初秋 2024-10-18 17:14:13

首先按照步骤在 web.config 文件中添加以下配置来激活 WCF 应用程序中的日志记录:

<system.diagnostics>
<trace autoflush="true" />
<sources>
  <source name="System.ServiceModel"
          switchValue="Information, ActivityTracing"
          propagateActivity="true">
    <listeners>
      <add name="wcfTraceListener" type="System.Diagnostics.XmlWriterTraceListener" initializeData="c:\WcfTrace.svclog" />
    </listeners>
  </source>
</sources>
</system.diagnostics>

然后只需双击 C:\ 驱动器根目录下生成的 WcfTrace.svclog 文件即可将其打开在 SvcTraceViewer 实用程序中。

如果像你说的那样,你收到了一些参数,但不是全部,也许你从 Android 应用程序调用的接口比服务器上部署的接口旧?

First activate logging in your WCF application by following the steps by adding the following config in your web.config file:

<system.diagnostics>
<trace autoflush="true" />
<sources>
  <source name="System.ServiceModel"
          switchValue="Information, ActivityTracing"
          propagateActivity="true">
    <listeners>
      <add name="wcfTraceListener" type="System.Diagnostics.XmlWriterTraceListener" initializeData="c:\WcfTrace.svclog" />
    </listeners>
  </source>
</sources>
</system.diagnostics>

Then just double-click on the WcfTrace.svclog file generated at the root of your C:\ drive, in order to open it in the SvcTraceViewer utility.

if like you say you receive some of the parameters, but not all, maybe the interface you are calling from your Android app is an older one than the one deployed on your server?

笛声青案梦长安 2024-10-18 17:14:13

如果您在使用 Fiddler 时遇到问题,还可以使用内置的 WCF 消息日志记录和 SvcTraceViewer.exe 来检查日志。

If you have troubles using Fiddler you can also use build-in WCF message logging and SvcTraceViewer.exe to check the log.

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