Nservicebus App.Config MessageEndpointMappings在NSB 3.3.8中不起作用

Nservicebus App.Config MessageEndpointMappings在NSB 3.3.8中不起作用,nservicebus,Nservicebus,在NSB的3.2.6版中,我将端点映射到我的应用程序配置中,如下所示: <UnicastBusConfig> <MessageEndpointMappings> <add Messages="Foo.Bar.Baz1, Foo.Interfaces" Endpoint="Foo.Bar.Monitor" /> <add Messages="Foo.Bar.Baz2, Foo.Interfaces" Endpoint="Foo.Bar.

在NSB的3.2.6版中,我将端点映射到我的应用程序配置中,如下所示:

<UnicastBusConfig>
  <MessageEndpointMappings>
    <add Messages="Foo.Bar.Baz1, Foo.Interfaces" Endpoint="Foo.Bar.Monitor" />
    <add Messages="Foo.Bar.Baz2, Foo.Interfaces" Endpoint="Foo.Bar.Monitor" />
    <add Messages="Foo.Bar.Baz3, Foo.Interfaces" Endpoint="Foo.Bar.Monitor" />
  </MessageEndpointMappings>
</UnicastBusConfig>


所以我的问题是:我的配置是否仍有问题,或者这真的是NSB 3.3.8中的一个错误?

我也有同样的问题。你解决了吗?@Algirdas没有。事实上,我们最终放弃了NServiceBus,因为它从一个版本到另一个版本都有很多问题。我们搬到了伦敦,从此我们的生活变得更好了。
<UnicastBusConfig>
  <MessageEndpointMappings>
    <add Assembly="Foo.Interfaces" Endpoint="Foo.Bar.Monitor" />
  </MessageEndpointMappings>
</UnicastBusConfig>
<UnicastBusConfig>
  <MessageEndpointMappings>
    <add Assembly="Foo.Interfaces" Namespace="Foo.Bar" Endpoint="Foo.Bar.Monitor" />
  </MessageEndpointMappings>
</UnicastBusConfig>
<UnicastBusConfig>
  <MessageEndpointMappings>
    <add Assembly="Foo.Interfaces" Type="Foo.Bar.Baz1" Endpoint="Foo.Bar.Monitor" />
    <add Assembly="Foo.Interfaces" Type="Foo.Bar.Baz2" Endpoint="Foo.Bar.Monitor" />
    <add Assembly="Foo.Interfaces" Type="Foo.Bar.Baz3" Endpoint="Foo.Bar.Monitor" />
  </MessageEndpointMappings>
</UnicastBusConfig>