WS寻址和多个“回复”

发布于 2024-07-13 03:10:04 字数 43 浏览 3 评论 0原文

请任何人澄清一下 WCF 中的 WS 寻址是否支持多个 ReplyTo?

Please any one clarify me WS Addressing in WCF does support the multiple ReplyTo or not?.

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

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

发布评论

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

评论(2

∞琼窗梦回ˉ 2024-07-20 03:10:04

这将深入回答您的问题 @ Microsoft

...

多个端点和唯一地址

您可能希望在特定服务上公开多个端点有几个原因。 原因之一是使用一些不同的绑定来公开同一个合约。 例如,您可能有一些使用者只能处理符合 WS-I Basic Profile 1.1 的服务(一个绑定),而其他使用者则可以处理全套标准(另一个绑定)。 或者,您可能有一些内部企业消费者出于性能原因需要二进制 TCP 传输(又一个绑定)。 使用不同绑定公开相同合约的能力使您可以同时容纳所有这些消费者。
当公开具有不同绑定的多个端点时,每个端点地址必须是唯一的。 这是因为每个端点需要不同的传输侦听器和通道堆栈。 考虑图 4 中的服务配置。在此示例中,所有端点都公开相同的协定 (ISimpleMath),但每个端点都使用不同的绑定,因此每个地址必须是唯一的。 如果修改端点以使用与其他端点之一相同的地址,Windows Communication Foundation 将在打开 ServiceHost 时引发异常。

...

This would answer your question in depth @ Microsoft

...

Multiple Endpoints and Unique Addresses

There are a few reasons why you might wish to expose multiple endpoints on a particular service. One reason is to expose the same contract using a few different bindings. For example, you may have some consumers that can only deal with WS-I Basic Profile 1.1-compliant services (one binding) and others that can handle the full suite of standards (another binding). Or you may have some internal enterprise consumers that demand binary TCP transmissions for performance reasons (yet another binding). The ability to expose the same contract using different bindings allows you to accommodate all of these consumers at the same time.
When exposing multiple endpoints with different bindings, each endpoint address must be unique. This is because each endpoint requires a different transport listener and channel stack. Consider the service configuration in Figure 4. In this example, all of the endpoints expose the same contract (ISimpleMath) but each one uses a different binding, so each address must be unique. If you modify an endpoint to use the same address as one of the other endpoints, Windows Communication Foundation will throw an exception while opening the ServiceHost.

...

末が日狂欢 2024-07-20 03:10:04

我认为 WCF 符合标准。 在这种情况下,最多可以给出一个replyTo 地址。 请参阅 第 3.1 节有关详细信息,请访问 www.w3.org/TR/ws-addr-core/#abstractmaps" rel="nofollow">WS-Addressing Core 规范。

I assume WCF is standards compliant. In this case at most one replyTo address can be given. See Section 3.1 of the WS-Addressing Core Specification for details.

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