如何读取在 IIS6 上运行的 .NET 4.0 应用程序中的响应标头?
我正在编写一个自定义 IHttpModule 实现器,以便我可以根据需要记录请求/响应信息。然而,在尝试读取响应标头时,我遇到了障碍。现在仅当您在 IIS7 上运行且处于集成管道模式时才支持 HttpResponse.Headers。我需要将此模块安装在 IIS6 下托管的 Web 应用程序中,因此我需要一种替代方法来获取此信息。
实现这一目标的最佳方法是什么?
I am writing a custom IHttpModule implementor so I can log request/response information as required. However I've hit a stumbling block when attempting to read the response headers. HttpResponse.Headers is now only supported if you are running on IIS7 and in integrated pipeline mode. I need this module to be installed in web applications hosted under IIS6, so I need an alternative way to get this information.
What is the best way to achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么作为服务器的你需要阅读它们?
我记得早在 IIS 5 中就能够在 Page.Load 事件处理程序中编写它们。
Why do you as the server need to read them?
I recall being able to write them as far back as IIS 5 in the Page.Load event handler.