TinyWeb 框架可以在会话状态关闭的情况下运行处理程序吗?
我正在使用 TinyWeb 框架和 Spark 视图引擎开发一个简单的网站。
环境是Visual Studio 2011开发者预览版.net 4.5
一切正常,直到我关闭会话状态。
当我关闭会话状态之前工作的 url 返回 404 我认为 iis 没有运行 TinyWeb 处理程序代码。既然它说它是静态文件处理程序?
有没有办法让 TinyWeb 处理请求而不必打开会话状态?
这是错误详细信息。
模块:IIS Web 核心
通知:MapRequestHandler
处理程序: StaticFile
错误代码:0x80070002
I am developing a simple website with the TinyWeb framework and Spark view engine.
Environment is Visual Studio 2011 developer preview & .net 4.5
Everything works well until I turn off session state.
When I turn session state off previously working urls return 404's
I think iis is not running the TinyWeb handler code. Since it says it was the static file handler?
Is there a way to get TinyWeb to handle requests with out having to have session state on?
Here is the error details.
Module: IIS Web Core
Notification: MapRequestHandler
Handler: StaticFile
Error Code: 0x80070002
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
答案看起来是否定的。请求由 HttpHandler 类处理,并实现 IRequiresSessionState。
The answer looks like no. Requests are processed by a HttpHandler class and it implements the IRequiresSessionState.