REST 调用未触发 PreRequestHandlerExecute 事件

发布于 2024-07-27 02:53:27 字数 218 浏览 3 评论 0原文

我正在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

以歌曲疗慰 2024-08-03 02:53:27

我得到了它!

我在这篇文章中找到了答案:

http://blogs.msdn .com/wenlong/archive/2006/01/23/516041.aspx

当以混合模式使用WCF时,模块会在管道的早期拦截请求:BeginRequest。 这意味着其他事件永远不会被调用

为了解决这个问题,我更改了 web.config 以使 WCF 在 Asp.Net 兼容模式下工作:

<system.serviceModel>
  <serviceHostingEnvironment aspNetCompatibilityEnabled="true" />
</system.serviceModel>

然后明确告诉我的服务也兼容:

[AspNetCompatibilityRequirements(RequirementsMode = 
AspNetCompatibilityRequirementsMode.Allowed)]
public class MyService : IMyService { ...

完成! 现在我拥有所有事件以及 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:

<system.serviceModel>
  <serviceHostingEnvironment aspNetCompatibilityEnabled="true" />
</system.serviceModel>

And then explicitely tell my service to be compatible too:

[AspNetCompatibilityRequirements(RequirementsMode = 
AspNetCompatibilityRequirementsMode.Allowed)]
public class MyService : IMyService { ...

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文