0

I need to capture trafic with fiddler but in my config i need to specify a proxy to perform the connection my .config looks like this:

    <?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <configSections>
    <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
      <section name="asdClientTest.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
    </sectionGroup>
  </configSections>
  <system.net>
   <defaultProxy  enabled="true" useDefaultCredentials="true">
      <proxy proxyaddress="http://zzzzz"></proxy>
    </defaultProxy>
  </system.net>
  <system.serviceModel>
    <bindings>
      <basicHttpBinding>
        <binding name="ATEX">
          <security mode="Transport" />
        </binding>
        <binding name="ATEX1">
          <security mode="Transport" />
        </binding>
        <binding name="ATEX2" />
      </basicHttpBinding>
    </bindings>
    <client>
      <endpoint address="https://zzzzzzzz"
          binding="basicHttpBinding" bindingConfiguration="ATEX" contract="WS.ConsultaATEX"
          name="ATEX" />      
    </client>
  </system.serviceModel>  
</configuration>

but fiddler is not capturing nothing. does anyone help me?

MirlvsMaximvs
  • 1,453
  • 1
  • 24
  • 34

2 Answers2

0

I believe here you will find how to properly configure Fiddler to achieve what you need.

FabioThorin
  • 150
  • 1
  • 7
0

If your server is running locally you may be missing bypassonlocal="False" in the <proxy> tag. I took this information from here.

Hope it helps!

Community
  • 1
  • 1
AxelWass
  • 1,321
  • 12
  • 21