Сервис wcf не захвачен в Fiddler 2?

Все еще пытаюсь записать запросы в fiddler 2: (

Я создал простой WcfService1 в vs.net 2010, когда я вызываю его в wcftestclient.exe, он не отображается в Fiddler. Кто-нибудь есть идеи?

web.config

<?xml version="1.0"?>
<configuration>

  <system.net>
    <defaultProxy>
      <proxy bypassonlocal="False" usesystemdefault="True" proxyaddress="http://127.0.0.1:8888" />
    </defaultProxy>
  </system.net>

  <system.web>
    <compilation debug="true" targetFramework="4.0" />
  </system.web>
  <system.serviceModel>
    <bindings />
    <client />
    <behaviors>
      <serviceBehaviors>
        <behavior>
          <!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment -->
          <serviceMetadata httpGetEnabled="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>
    <serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
  </system.serviceModel>
 <system.webServer>
    <modules runAllManagedModulesForAllRequests="true"/>
  </system.webServer>

</configuration>

1 ответ

Решение

Вы адресуете конечную точку, используя localhost как имя хоста? Используйте имя вашего компьютера или сетевой IP-адрес, так как трафик на localhost или же 127.0.0.1 не попадает в плен.

Другие вопросы по тегам