如何配置客户端以在 Fiddler 中捕获本地 WCF 请求?
Posted
技术标签:
【中文标题】如何配置客户端以在 Fiddler 中捕获本地 WCF 请求?【英文标题】:How to configure client to catch local WCF requests in Fiddler? 【发布时间】:2017-08-07 07:26:13 【问题描述】:我有使用 WCF 的简单客户端应用程序(控制台应用程序)和服务器应用程序(WCF 库项目)。我想看看 WCF 消息在 Fiddler 中的样子。
我在客户端的 app.config 中添加了以下代码:
<configuration>
<system.net>
<defaultProxy>
<proxy bypassonlocal="False" usesystemdefault="True" proxyaddress="http://127.0.0.1:8888" />
</defaultProxy>
</system.net>
我的 Fiddler 显示来自浏览器的所有连接,除了一个在 url 中包含单词“vshub”的连接,但 WCF 客户端/服务器应用程序之间没有显示连接。如何配置?
更新1:
我的 WCF 服务库(服务器应用程序)配置如下:
<system.serviceModel>
<services>
<service name="WcfServer.Service1">
<host>
<baseAddresses>
<add baseAddress = "http://localhost:8733/Design_Time_Addresses/WcfServer/Service1/" />
</baseAddresses>
</host>
<!-- Service Endpoints -->
<!-- Unless fully qualified, address is relative to base address supplied above -->
<endpoint address="" binding="basicHttpBinding" contract="WcfServer.IService1">
<!--
Upon deployment, the following identity element should be removed or replaced to reflect the
identity under which the deployed service runs. If removed, WCF will infer an appropriate identity
automatically.
-->
<identity>
<dns value="localhost"/>
</identity>
</endpoint>
<!-- Metadata Endpoints -->
<!-- The Metadata Exchange endpoint is used by the service to describe itself to clients. -->
<!-- This endpoint does not use a secure binding and should be secured or removed before deployment -->
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior>
<!-- To avoid disclosing metadata information,
set the values below to false before deployment -->
<serviceMetadata httpGetEnabled="True" httpsGetEnabled="True"/>
<!-- To receive exception details in faults for debugging purposes,
set the value below to true. Set to false before deployment
to avoid disclosing exception information -->
<serviceDebug includeExceptionDetailInFaults="False" />
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>
【问题讨论】:
【参考方案1】:您在客户端配置中无事可做,您可以删除您的代理设置。如果您不使用“localhost”并将其替换为“MyMachineName”,Fiddler 将起作用
【讨论】:
据我所知没关系。操作系统足够智能,可以将您的机器名称映射到 localhost。 您的服务器可以在 localhost 上侦听,但是将您的客户端端点更改为您的机器名称,例如Fiddler 无法捕获本地请求。 Fiddler 仅捕获实际通过网络传输的请求。本地请求被 Windows 快捷方式。
an old post 有一些替代品,虽然我不知道该列表的实际情况。
【讨论】:
以上是关于如何配置客户端以在 Fiddler 中捕获本地 WCF 请求?的主要内容,如果未能解决你的问题,请参考以下文章
Maven:如何通过 Fiddler 捕获 HTTPS 流量