How to configure Fiddler to listen to localhost?

后端 未结 16 2214
长情又很酷
长情又很酷 2020-12-02 09:51

I want to monitor HTTP traffic between a process on my local machine and another (server) process, also running on my local machine.

How can I configure Fiddler to

相关标签:
16条回答
  • 2020-12-02 10:14

    try putting your machine name/IP address instead of 'localhost' into URL. Works for me...

    0 讨论(0)
  • 2020-12-02 10:17

    And I just found out that on vista 'localhost.' will not work. In this case use '127.0.0.1.' (loopback address with a dot appended to it).

    0 讨论(0)
  • 2020-12-02 10:19

    You cannot. Instead if you machine is named "myMachine", point your browser to http://mymachine instead of http://localhost

    0 讨论(0)
  • 2020-12-02 10:23

    Replace localhost by lvh.me in your URL

    For example if you had http://localhost:24448/HomePage.aspx

    Change it to http://lvh.me:24448/HomePage.aspx

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