当 WCF 客户端为同一合约指定多个端点时会发生什么?

发布于 2024-08-13 21:49:49 字数 27 浏览 9 评论 0原文

它会消耗掉所有的东西吗? 会抛出异常吗?

Will it consume from all of them?
Will it throw an exception?

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

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

发布评论

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

评论(1

过潦 2024-08-20 21:49:49

您可以在客户端配置中为同一个合约和不同的地址拥有多个端点,没有问题。

它们需要由 标记上唯一的 name= 属性分隔。

<client>
  <endpoint name="tcpEndpoint"
            address="net.tcp://server:8888/SomeService"
            binding="netTcpBinding"
            contract="IYourService" />
  <endpoint name="httpEndpoint"
            address="http://server:8777/SomeService"
            binding="basicHttpBinding"
            contract="IYourService" />
</client>

创建客户端代理时,您需要提供要使用的端点的名称:

YourClient client = new YourClient("netTcpEndpoint");

您不能再仅仅实例化您的客户端并期望它找到要使用的“该”端点,因为有多个(而且没有办法)不幸的是,将其定义为“默认值”,如果未指定任何内容,则会使用该默认值)。

除此之外 - 我认为应该不会出现任何问题。

You can have multiple endpoints for the same contract and different addresses in your clieint config, no problem.

They need to be separated by a unique name= attribute on the <endpoint> tag.

<client>
  <endpoint name="tcpEndpoint"
            address="net.tcp://server:8888/SomeService"
            binding="netTcpBinding"
            contract="IYourService" />
  <endpoint name="httpEndpoint"
            address="http://server:8777/SomeService"
            binding="basicHttpBinding"
            contract="IYourService" />
</client>

When you create your client proxy, you need to provide the name of the endpoint you want to use:

YourClient client = new YourClient("netTcpEndpoint");

You can no longer just instantiate your client and expect it to find "the" endpoint to use, since there are multiple (and there's no way to define one as the "default" which gets used if nothing is specified, unfortunately).

Other than that - no problems should arise, I think.

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