当 WCF 客户端为同一合约指定多个端点时会发生什么?
它会消耗掉所有的东西吗? 会抛出异常吗?
Will it consume from all of them?
Will it throw an exception?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
它会消耗掉所有的东西吗? 会抛出异常吗?
Will it consume from all of them?
Will it throw an exception?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
您可以在客户端配置中为同一个合约和不同的地址拥有多个端点,没有问题。
它们需要由
标记上唯一的name=
属性分隔。创建客户端代理时,您需要提供要使用的端点的名称:
您不能再仅仅实例化您的客户端并期望它找到要使用的“该”端点,因为有多个(而且没有办法)不幸的是,将其定义为“默认值”,如果未指定任何内容,则会使用该默认值)。
除此之外 - 我认为应该不会出现任何问题。
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.When you create your client proxy, you need to provide the name of the endpoint you want to use:
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.