Rhino 服务总线编程配置
我有两个主机 - 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看发生情况的最简单方法是打开 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.