Rhino 服务总线编程配置

发布于 2024-12-12 04:02:24 字数 553 浏览 1 评论 0原文

我有两个主机 - A 和 B 我使用以下代码片段在主机 A 中配置服务总线。

host.BusConfiguration(c => c.Threads(1).Retries(1)
        .Bus(endpointA.AbsoluteUri, "name", true)
        .Receive(typeof(MyMessage).Namespace, hostB.Endpoint.AbsoluteUri, true)

这将主机配置为创建监听 endpointA.AbsoluteUri 地址并从 [typeof(MyMessage).Namespace]< 写入消息的总线/code> 命名空间位于 hostB.Endpoint.AbsoluteUri ,对吗? 我使用相同的代码来配置主机 B 中的总线(使用主机 A 所在的主机 B),

我无法配置两个主机相互发送和接收消息。其中只有一个(A)能够发送B收到的消息。当B发送消息时,该消息只是放入队列中而没有被A消费。这可能是什么原因?

I have two hosts - A and B
I use following code snippet to configure service bus in host A.

host.BusConfiguration(c => c.Threads(1).Retries(1)
        .Bus(endpointA.AbsoluteUri, "name", true)
        .Receive(typeof(MyMessage).Namespace, hostB.Endpoint.AbsoluteUri, true)

This configures host to create bus that listens to endpointA.AbsoluteUri address and writes messages from [typeof(MyMessage).Namespace] namespace to queue located at hostB.Endpoint.AbsoluteUri , correct?
I use same code for configuring if bus in host B (with using of hostB where hostA stands)

I cannot configure two hosts to mutually send and receive messages to each other. Only one of them (A) is able to send messages that are received by B. When B sends message, the message is just put in queue and not consumed by A. What could be a reason?

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

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

发布评论

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

评论(1

陌上青苔 2024-12-19 04:02:24

查看发生情况的最简单方法是打开 log4net 的日志记录至 DEBUG 级别,然后查看主机 A 的输出。

The easiest way to see what's going on is to turn on logging for log4net to level DEBUG and see what the output is for host A.

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