WCF - 如何使用 WCF 4.0 路由器服务进行负载平衡

发布于 2024-09-24 09:02:13 字数 167 浏览 2 评论 0 原文

您了解过 WCF 路由器服务 4.0 吗?

我知道这个新功能有很多优点,但我对此有一些疑问...

  1. 在哪里可以找到文档?
  2. 如何通过 WCF 路由器服务 4.0 实现负载平衡逻辑?
  3. WCF 路由器服务如何处理具有回调契约的服务?

Have you ever learned about WCF Router Service 4.0?

I know that this new feature has a lot of advantages, but i have some questions about it...

  1. Where can I find the documentation?
  2. How to implement a logic for Load Balance over WCF Router Service 4.0?
  3. How does WCF Router Service deal with services that has callback contracts?

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

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

发布评论

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

评论(1

远昼 2024-10-01 09:02:13
  1. 您可以使用这个 例子
    2.您可以使用 在此处输入链接描述 这个例子

3.like cisco路由器
您必须更改示例 1:

  • 将所有连接更改为 wsdual
    -定义 Icall 回拨联系人
    - 将路由器更改为contract =“System.ServiceModel.Routing.IDuplexSessionRouter”
    -将客户端更改为:

InstanceContext ctx = new InstanceContext(_CallBack);
_Client = new DuplexChannelFactory(ctx, _EndpointName);
_Client.Open();

            _Chanel = _Client.CreateChannel();
  1. you can use this example
    2.you can use enter link description here this example

3.like cisco router
you must change example 1:

  • change all conection to wsdual
    -define Icall back contact
    -change router to contract="System.ServiceModel.Routing.IDuplexSessionRouter"
    -change client to:

InstanceContext ctx = new InstanceContext(_CallBack);
_Client = new DuplexChannelFactory(ctx, _EndpointName);
_Client.Open();

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