IIS Web服务最有效的跨进程通信方法是什么

发布于 2024-08-07 10:29:00 字数 254 浏览 1 评论 0原文

我们有一组(ASMX,但可能是 WCF)64 位 Web 服务,需要执行一些32 位托管代码(API 具有 32 位 COM 依赖项并且不能以 64 位执行)以在同一物理机上进行处理。 64 位 Web 服务托管在 IIS 7.0 中。注意:某些消息包含大字节数组。

设置此功能最有效的方法是什么? 带有命名管道和二进制序列化消息的 WCF

We have a set of (ASMX but could be WCF) 64-bit web services which need to execute some 32-bit managed code (the APIs have 32-bit COM dependencies and cannot be executed in 64-bit) for processing on the same physical machine. The 64-bit web services are hosted in IIS 7.0. Note: some of the messages contain large byte arrays.

What is the most efficient way to set this up? WCF with named pipes and binary serialization of the messages?

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

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

发布评论

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

评论(1

·深蓝 2024-08-14 10:29:00

是的。如果全部在一台机器上,请使用命名管道。如果您有大字节数组,请使用二进制序列化。

Yes. Use Named pipes if it is all on one machine. Use binary serialization if you have large byte arrays.

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