Skip to content

Latest commit

 

History

History
12 lines (11 loc) · 423 Bytes

fiddler.md

File metadata and controls

12 lines (11 loc) · 423 Bytes
Catpuring traffic from .NET server services
<!-- The following section is to force use of Fiddler for all applications, including those running in service accounts -->
<system.net>
  <defaultProxy
      enabled = "true"
      useDefaultCredentials = "true">
  <proxy autoDetect="false" bypassonlocal="false" proxyaddress="http://127.0.0.1:8888" usesystemdefault="false" />
  </defaultProxy>
</system.net>