I'm am connecting to remote HTTP services from a .NET application and Fiddler won't capture the traffic. When I hit the services with SOAP UI, no problems Fiddler correctly shows traffic, but no matter what I do I can't get it to monitor the .NET application. What am I doing wrong?
I've tried the following:
- turning on "Troubleshoot Filters..."
- the .NET config from -
http://fiddler2.com/documentation/Configure-Fiddler/Tasks/ConfigureDotNETApp - although I think that's only for localhost
- changing the listening port from 8888 to for e.g. 8082 and back again
my WCF binding config is as follows:
<basicHttpBinding>
<binding name="BindingName"
closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
maxBufferSize="6553600" maxBufferPoolSize="5242880" maxReceivedMessageSize="6553600"
messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered" useDefaultWebProxy="false">
<readerQuotas maxDepth="32" maxStringContentLength="32768" maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<security mode="None">
<transport clientCredentialType="None" proxyCredentialType="None" realm="" />
<message clientCredentialType="UserName" algorithmSuite="Default" />
</security>
</binding>
</basicHttpBinding>
and I have tried using the following:
<
system.net>
<defaultProxy>
<proxy bypassonlocal="False" usesystemdefault="True" />
</defaultProxy>
</
system.net>