Note that there are some explanatory texts on larger screens.

plurals
  1. POWCF Call not showing in Fiddler2
    text
    copied!<p>I have a simple WCF Service with basicHttp binding. The service is hosted locally (Win7 laptop) in IIS7. I'm able to browse the service at: <a href="http://localhost/musicstore/musicstore.svc" rel="nofollow noreferrer">http://localhost/musicstore/musicstore.svc</a> (port 80)</p> <p>I've developed a simple windows form client app to call the service. It works fine but I'd really like to see the message call / response through Fiddler2. Fiddler2 will happily report traffic as I browse the web so I can't understand why it's not picking up this WCF call?</p> <p>Is there another way to view the data on WCF calls. Maybe there's a Microsoft Tool?</p> <p>The client config is:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8" ?&gt; &lt;configuration&gt; &lt;system.serviceModel&gt; &lt;client&gt; &lt;endpoint address="http://localhost/musicstore/musicstore.svc" binding="basicHttpBinding" bindingConfiguration="" contract="MusicStore.IMusicStore" name="BasicHttp" /&gt; &lt;/client&gt; &lt;/system.serviceModel&gt; &lt;/configuration&gt; </code></pre> <p>The service config is:</p> <pre><code>&lt;services&gt; &lt;service behaviorConfiguration="MusicStoreBehavior" name="MusicStore"&gt; &lt;endpoint address="" binding="basicHttpBinding" contract="IMusicStore"&gt; &lt;identity&gt; &lt;dns value="localhost" /&gt; &lt;/identity&gt; &lt;/endpoint&gt; &lt;endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" /&gt; &lt;/service&gt; &lt;/services&gt; </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload