How to display localhost traffic in Fiddler while debugging an ASP.NET application?

后端 未结 14 1391
野的像风
野的像风 2020-12-07 13:23

How do I display localhost traffic in Fiddler while debugging an ASP.NET application?

相关标签:
14条回答
  • 2020-12-07 13:33

    try using this:

    http://ipv4.fiddler/folder
    

    instead of

    http://localhost/folder
    

    this also works with ports

    http://ipv4.fiddler:12345/folder
    

    Here is link to fiddler documentation

    http://docs.telerik.com/fiddler/Configure-Fiddler/Tasks/MonitorLocalTraffic

    0 讨论(0)
  • 2020-12-07 13:38

    Checking the "Use PAC Script" in Fiddler Options -> Connections worked for me when using IIS Express within a corporate intranet.

    0 讨论(0)
  • 2020-12-07 13:40

    For an ASP.NET web site project:

    1) Right-click the project and select Property Pages
    2) Select Start Options
    3) Under the Server section, click the "Use custom server" and edit the Base URL by replacing localhost with your computer's name.

    0 讨论(0)
  • 2020-12-07 13:40

    You should uncheck the checkbox:

    Bypass proxy server for local addresses

    Located at proxy configuration of Internet Explorer.

    0 讨论(0)
  • 2020-12-07 13:41

    One of the possible solutions is remove the proxy settings in IE as follows.

           IE->Tools->Internet Options->Connections->Lan Settings->
    

    disable following

    • Automatically detect settings
    • Use automatic configuration script
    0 讨论(0)
  • 2020-12-07 13:43

    You may use PC hostname instead of 127.0.0.1 or localhost

    0 讨论(0)
提交回复
热议问题