How do I get Fiddler to stop ignoring traffic to localhost?

前端 未结 14 1402
故里飘歌
故里飘歌 2020-11-27 12:13

When using Fiddler to monitor HTTP Requests & Responses in Internet Explorer it ignores all traffic directed to http://localhost.

14条回答
  •  北海茫月
    2020-11-27 13:04

    For Fiddler to capture traffic from localhost on local IIS, there are 3 steps (It worked on my computer):

    1. Click Tools > Fiddler Options. Ensure Allow remote clients to connect is checked. Close Fiddler.

    enter image description here

    1. Create a new DWORD named ReverseProxyForPort inside KEY_CURRENT_USER\SOFTWARE\Microsoft\Fiddler2. Set the DWORD to port 80 (choose decimal here). Restart Fiddler.

    enter image description here

    1. Add port 8888 to the addresses defined in your client. For example localhost:8888/MyService/WebAPI/v1/

提交回复
热议问题