多个WCF服务之间的会话

发布于 2024-11-08 23:13:38 字数 204 浏览 0 评论 0原文

我是新的 wcf,需要一些澄清,我在一个项目中有多个 WCF 服务(假设 service01-service05 具有每个会话模式),现在我想知道何时创建客户端并调用 service01,然后调用 service02 等等,是创建单个会话还是 session01、session02(针对每个服务单独的会话)等等。

如果是单独的会话,那么在调用多个服务时对单个会话执行什么操作。

I am new wcf and want some clarification, I have multiple WCF services (let suppose service01-service05 with per session mode) in a single project, now I want to know when I will create a client and calls the service01 then service02 and so on, will it be create the single session or session01, session02 (for each service seperate session) and so on.

If seperate session then what to do for a single session while calling multile services.

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

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

发布评论

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

评论(1

巴黎夜雨 2024-11-15 23:13:38

每个 WCF 服务实例将有一个会话。 WCF 将会话状态保存在内存中,并按代理的每个服务端点对其进行管理。

这也意味着,如果您在每次调用时终止并重新创建一个新的代理实例,您将丢失会话状态。

There will be one session PER WCF service instance. WCF holds session state in memory, and manages it per service endpoint per proxy.

This also implies that if you kill and re-create a new proxy instance per call, you will lose the session state.

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