具有静态变量和两个虚拟目录的 WCF 服务

发布于 2024-10-21 17:23:48 字数 181 浏览 3 评论 0原文

我有一个带有两个端点/虚拟目录的 WCF 服务,

localhost/A/X.svc

localhost/B/X.svc

,看起来两个“端点”都有一个来自静态变量的自己的实例。我已经知道这是因为 AppDomain 的原因。但是两个 enpoints 有可能使用同一个 AppDomain 吗?

I have a WCF service with two endpoints/virtual directories,

localhost/A/X.svc

localhost/B/X.svc

and it looks like, that both "endpoint" has an own instance from the static variable. I've already know that it is because of the AppDomain. But is it possible that both enpoints use the same AppDomain?

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

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

发布评论

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

评论(2

鼻尖触碰 2024-10-28 17:23:48

如果您想在 AppDomain 之间共享数据,您可以考虑采用与有效绑定 AppDomain 的静态变量不同的方法。例如文件、数据库或内存映射文件(仅举几例)。

If you want to share data between AppDomain, you could consider a different a approach than static variables which are effectively AppDomain bound. For instance files, a data base or memory mapped files (to name but a few).

玩心态 2024-10-28 17:23:48

我认为,默认情况下,它们的端点是不同的,例如“abc.com/A/X.svc”和“abc.com/B/X.svc”

I think, default, their endpoint are different, like "abc.com/A/X.svc" and "abc.com/B/X.svc"

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