博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Monitor traffic to localhost from IE or .NET
阅读量:5927 次
发布时间:2019-06-19

本文共 916 字,大约阅读时间需要 3 分钟。

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

 

To monitor traffic sent to http://localhost or  from IE8 or below or the .NET Framework:

  • Use your machine name as the hostname instead of Localhost or 127.0.0.1

    For example, instead of

    http://localhost:8081/mytestpage.aspx

    Go to:

    http://machinename:8081/mytestpage.aspx
  • Use one of these addresses:

    -To use the IPv4 adapter (recommended for the Visual Studio test webserver, codename: Cassini):

    http://ipv4.fiddler

    -To use the IPv6 adapter:

    http://ipv6.fiddler

    -To use localhost in the Host header:

    http://localhost.fiddler
  • Click Rules > Customize Rules... and add this code to the Rules file:

    static function OnBeforeRequest(oSession:Fiddler.Session){ if (oSession.HostnameIs("MYAPP")) { oSession.host = "127.0.0.1:8081"; } }

    Now, http://myapp will act as an alias for 127.0.0.1:8081

转载于:https://www.cnblogs.com/zhouxiuquan/p/4996173.html

你可能感兴趣的文章
C# 数据结构--排序[下]
查看>>
实验数据
查看>>
探索java世界中的日志奥秘
查看>>
Codeforces Round #450 (Div. 2)D. Unusual Sequences[数论][组合数学][dp II]
查看>>
drools简单应用
查看>>
C# 泛型多种参数类型与多重约束 示例
查看>>
TCP/IP:IP多播选路
查看>>
仿Google+相册的动画
查看>>
Keras版Faster-RCNN代码学习(IOU,RPN)1
查看>>
ASP.NET 多环境下配置文件web.config的灵活配置---转
查看>>
JavaScript对象、JSON对象、JSON字符串的区别
查看>>
ELFhash
查看>>
C++ float的内存布局
查看>>
Discuz添加自定义模板广告
查看>>
微信小程序 --- 页面跳转
查看>>
yii---where or该如何使用
查看>>
并发编程(一): POSIX 使用互斥量和条件变量实现生产者/消费者问题
查看>>
linux下的常用命令
查看>>
Windows Azure 社区新闻综述(#69 版)
查看>>
异常分析
查看>>