Elmah 未记录 404(缺少文件/图像)
由于某种原因 emlah 没有在我的 MVC3 应用程序中记录丢失的图像。其他诸如“缺少操作”错误网址之类的内容都可以。可能是什么原因? 谢谢
编辑:
我正在运行集成模式,并且不使用内置 VS IIS。
编辑 2:
如果图像通过虚拟目录映射,则似乎不会记录丢失的图像:
For some reason emlah is not logging missing images in my MVC3 app. Everything else like 'missing action' wrong url is ok. what could be the cause?
thanks
EDIT:
I am running Integrated Mode and am NOT using built-in VS IIS.
EDIT 2:
Doesn't seem to log missing images if the images are mapped via virtual directory:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
那是因为您没有在 IIS 集成管道模式下运行。如果您在 Visual Studio 的内置 Web 服务器 (Cassini) 或 IIS 6.0 或 IIS 7.0 经典模式中对此进行测试,则图像将直接由 Web 服务器提供,而不是通过 ASP.NET 环境提供。因此,由于 ELMAH 是一个 ASP.NET 处理程序,因此它无法了解这些图像。
您可以切换到在本地使用 IIS Express,并在交付时使用 IIS 7.0 集成管道模式。然后您将获得未找到静态资源(例如图像)的日志。
That's because you are not running in IIS integrated pipeline mode. If you are testing this inside the Visual Studio's built-in web server (Cassini) or IIS 6.0 or IIS 7.0 classic mode, images are served directly by the web server and not through the ASP.NET environment. So since, ELMAH is an ASP.NET handler, it has no way of knowing about those images.
You could switch to using IIS Express locally and when you ship use IIS 7.0 integrated pipeline mode. Then you will get logs for not found static resources such as images.