How to display localhost traffic in Fiddler while

2019-01-16 06:08发布

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

14条回答
叛逆
2楼-- · 2019-01-16 06:10

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

查看更多
冷血范
3楼-- · 2019-01-16 06:13

If trying to catpure HTTPS traffic on a local machine from BizTalk using Fiddler, try using the WCF Adapter Proxy settings. I used an address of: http://localhost:8888/

查看更多
爷的心禁止访问
4楼-- · 2019-01-16 06:14

Start Fiddler. Go to Tools--> Fiddler Options. Choose Connections tab. Check the 'USe PAC Script' option.

Now you will be able to monitor local traffic as well

查看更多
Luminary・发光体
5楼-- · 2019-01-16 06:17

You may use PC hostname instead of 127.0.0.1 or localhost

查看更多
聊天终结者
6楼-- · 2019-01-16 06:18

Probably the easiest way to monitor traffic to localhost is to replace "localhost" with "localhost." in the browser's URL bar. E.g.

http://localhost./MyApp/default.aspx
查看更多
甜甜的少女心
7楼-- · 2019-01-16 06:19

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.

查看更多
登录 后发表回答