通过rhino.queues的Rhino Service Bus - 发送消息时出错

时间:2015-10-20 00:01:12

标签: c# message-queue rhino-servicebus

当我尝试从测试项目发送消息时出现错误, 这是异常消息

  

找不到C2C.RhinoUtil.EventServiceBus的邮件所有者      在   Rhino.ServiceBus.Impl.MessageOwnersSelector.GetEndpointForMessageBatch(对象[]   消息)在Rhino.ServiceBus.Impl.DefaultServiceBus.Send(Object []   消息)   C2C.Infraestructura.Aspect.EventDispatcherAspect.Intercept(IInvocation   调用)   F:\ PROYECTOS \ C2C \ DESARROLLO \中继线\ C2C.Infraestructura \看点\ EventDispatcherAspect.cs:线   44

这是我的测试app.config的配置(这类似于将消息发送到中央应用程序的客户端)

<rhino.esb>
<bus threadCount="1" numberOfRetries="5" endpoint="rhino.queues://localhost:50002/RhinoServiceBusTest" name="client" />
<messages>
  <add name="messagges" endpoint="rhino.queues://localhost:50001/RhinoServiceBusBackend" />
</messages>
<assemblies>
  <add assembly="Rhino.ServiceBus.RhinoQueues" />
</assemblies>

这是我的后端配置

<rhino.esb>
<bus threadCount="1" numberOfRetries="5" endpoint="rhino.queues://localhost:50001/RhinoServiceBusBackend" name="backend" />    
<assemblies>
  <add assembly="Rhino.ServiceBus.RhinoQueues" />
</assemblies>

这是我发送消息的代码的一部分

QueueUtil.PrepareQueue("client");

var host = new DefaultHost();
host.Start<ClientBootStrapper>();

//Console.WriteLine("Client 1: Hit enter to send message");
//Console.ReadLine();

var bus = host.Bus as IServiceBus;

var eventSB = new EventServiceBus();
eventSB.Nombre = methodName;
eventSB.Service = invocation.TargetType.FullName;
eventSB.Data = (arguments as BusinessEntity).UnProxy(); ;

try
{
    bus.Send(eventSB);
}
catch (Exception)
{

    throw;
}

基本上我拦截所有交易并尝试通知另一个后端应用程序,但

从我的测试方法中创建

1 个答案:

答案 0 :(得分:0)

问题出在测试项目的app.config上,你必须像实体命名空间一样设置总线名称,就像这样

<messages>
  <add name="C2C.RhinoUtil" endpoint="rhino.queues://localhost:50001/RhinoServiceBusBackend" />
</messages>

其中“C2C.RhinoUtil”是我的类“EventServiceBus”的命名空间,它在消息中发送