监控BHO和IE之间的数据流动
有没有办法监控BHO和IE之间的数据流? 我正在写一篇 BHO,它给出了一些问题。 我尝试过像 fiddler 这样的工具,它可以监视服务器和 IE 之间的流量,但我可以监视 BHO 和 IE 之间的流量吗?
我最感兴趣的是某些工具。
Is there a way to monitor data flowing between BHO and IE?
I am writing one BHO and its giving some issues . I have tried tools like fiddler which can monitor traffic between server and IE but can I monitor traffic flowing between BHO and IE.
I am mostly interested in some tool.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要使用 Windows 调试器来调试此类问题。 WinDBG/Visual Studio/等。
You'll need to use a Windows debugger to debug this type of problem. WinDBG/Visual Studio/etc.
要了解如何在 VS2010 中正确调试 BHO 项目,如 EricLaw 的建议,您可以参考 这个问题。
我发现关于这个主题的许多答案不完整、不准确或没有正确演示,并试图解决这种情况。
To know how to properly debug a BHO project in e.g. VS2010, as is suggested by EricLaw, you could refer to this question.
I found many answers on this topic to be incomplete, inaccurate or not properly demonstrated and tried to fix that situation.