如何使用Fiddler监听asp.net开发服务器(即cassini)?
我正在尝试使用 Fiddler 调试(RESTful)WCF 应用程序。我通过 VS IDE 运行我的项目 - 它在 ASP.NET 开发服务器(又名 Cassini)中启动我的应用程序。然后,我启动 Fiddler 并在“请求生成器”选项卡中输入以下内容:“http://localhost:1066/GeneralService /sections/summary”,使用 GET 作为 http 方法。
Fiddler 响应“[Fiddler] 连接到本地主机失败。
异常文本:无法建立连接,因为目标计算机主动拒绝 ::1:1066”
有什么方法可以让我调试在 Cassini 上运行的应用程序吗?
谢谢, 史蒂夫
I am attempting to debug a (RESTful) WCF app using Fiddler. I run my project via VS IDE - which launches my app in the ASP.NET Development Server aka Cassini. I then launch Fiddler and in the Request Builder tab enter the following: "http://localhost:1066/GeneralService/sections/summary" with GET as the http method.
Fiddler responds with "[Fiddler] Connection to localhost failed.
Exception Text: No connection could be made because the target machine actively refused it ::1:1066 "
Is there some way for me to debug an app running on Cassini?
Thanks,
Steve
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
一个巧妙的技巧就是在 localhost 一词后面添加一个句点 (.)。无需其他配置。
One neat trick is just to add a period(.) after the word localhost. No other config neccesary.
将 url 更改为
http://ipv4.fiddler:1066/GeneralService/sections/summary
以使 fiddler 能够侦听localhost
Change the url to
http://ipv4.fiddler:1066/GeneralService/sections/summary
to enable fiddler to listen onlocalhost
您可以使用 CassiniDev 内置的集成流量监视器。它可以独立运行,也可以直接替代 VS 2008/2010 开发服务器。
替代文本 http://i3.codeplex.com/项目/下载/FileDownload.aspx?ProjectName=cassinidev&DownloadId=123367
替代文本 http://i3.codeplex.com/项目/下载/FileDownload.aspx?ProjectName=cassinidev&DownloadId=123366
You can use the integrated traffic monitor built into CassiniDev. It can be run stand-alone or as a direct drop-in replacement for VS 2008/2010 development servers.
alt text http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=cassinidev&DownloadId=123367
alt text http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=cassinidev&DownloadId=123366