REST 调用未触发 PreRequestHandlerExecute 事件
我正在 HttpApplication 类的 PreRequestHandlerExecute 事件处理程序中创建我的 nhibernate 会话。
它对于 MVC 工作得很好,但是,在 WCF (REST) 中,事件永远不会被触发。
有没有办法实现它或有其他更好的想法来在 MVC 和 WCF/Rest 中设置会话?
提前致谢,
安德烈·卡鲁奇
I'm creating my nhibernate session in the PreRequestHandlerExecute event handler of the HttpApplication class.
It works fine for MVC, however, when in WCF (REST) the event is never fired.
Is there a way to make it happen or any other better idea to set the session both in MVC and WCF/Rest?
Thanks in advance,
André Carlucci
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我得到了它!
我在这篇文章中找到了答案:
http://blogs.msdn .com/wenlong/archive/2006/01/23/516041.aspx
当以混合模式使用WCF时,模块会在管道的早期拦截请求:BeginRequest。 这意味着其他事件永远不会被调用。
为了解决这个问题,我更改了 web.config 以使 WCF 在 Asp.Net 兼容模式下工作:
然后明确告诉我的服务也兼容:
完成! 现在我拥有所有事件以及 HttpContext.Current 而不是 OperationContext.Current
我希望这可以帮助遇到同样问题的人。
干杯,
安德烈·卡鲁奇
I got it!
I found the answer in this article:
http://blogs.msdn.com/wenlong/archive/2006/01/23/516041.aspx
When using WCF in the mixed mode, the module intercepts the request in the early stage of the pipeline: BeginRequest. That means the other events are never called.
To fix that, I changed my web.config to make WCF work in the Asp.Net compatibility mode:
And then explicitely tell my service to be compatible too:
And done! Now I have all events and also the HttpContext.Current instead of OperationContext.Current
I hope this helps someone with the same problem.
Cheers,
André Carlucci