内存/程序集绑定中的 WCF

发布于 2024-10-18 13:11:02 字数 213 浏览 3 评论 0原文

是否有任何使用 WCF 在内存中调用程序集的选项?
目前,我们通过 basicHttp 绑定在不同的服务器上部署多个服务,对于单机安装来说,对服务进行内存调用就足够了。是否有任何绑定可以使用,而无需在本地托管服务(因此不使用命名管道)而是在进程内?

端点位置可能是这样的,例如:

assembly://MyCoolService.dll

Are there any options on using WCF to do in memory calls to assemblies?
Currently we deploy multiple services over basicHttp binding on different servers, for a single machine installation it would be enough to do an in memory call to the service. Is there any binding I can use without having to host the services locally (so not with named pipes) but in-process?

The endpoint location could be than something like this for example:

assembly://MyCoolService.dll

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

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

发布评论

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

评论(2

薄荷梦 2024-10-25 13:11:02

没有这样的内置绑定。 NetNamedPipe 通常用于此目的。唯一的选择是检查 NullTransport

There is no such build-in binding. NetNamedPipe is usually used for that. The only option is to check NullTransport.

感悟人生的甜 2024-10-25 13:11:02

不,这是不可能的,net.pipe 绑定是您可以获得的最接近的绑定(并且具有最佳性能)。

no this is not possible, net.pipe binding is the closest you can get (and the with the best performance).

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