OperationContext.Current 为 null,所有其他上下文也是如此

发布于 2024-09-01 16:54:48 字数 536 浏览 7 评论 0原文

我有一个 WCF 服务定义如下:

[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
[ServiceBehavior(IncludeExceptionDetailInFaults = true, InstanceContextMode = InstanceContextMode.PerCall)]
public partial class FrontEndService : IFrontEndService

但是,大多数时候(但并非总是)InstanceContext.Current 为 null,以及 HttpContext.CurrentOperationContext.Current 也是 null。

我缺少什么?我想要做的是将一些数据存储在 HttpContext.Current.Items 或在请求长度内存在的类似集合中。

I have a WCF service defined as following:

[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
[ServiceBehavior(IncludeExceptionDetailInFaults = true, InstanceContextMode = InstanceContextMode.PerCall)]
public partial class FrontEndService : IFrontEndService

However, most of the time (but not always) InstanceContext.Current is null, as well as HttpContext.Current and OperationContext.Current is also null.

What am I missing? What I want to do is store some data in HttpContext.Current.Items or a similar collection that exists for the length of the request.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

千纸鹤带着心事 2024-09-08 16:54:48

该服务只是从另一个线程调用,而不是通过 HTTP,这就是所有上下文都为空的原因。

The service was just being called from another thread, and not via HTTP, that's why all Contexts were null.

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