We are using NSB 6.0. I have set up RabbitMQTransport and MsmqTransport on my configuration with following code
if (this.UseRabbitMQ)
{
config.UseTransport<RabbitMQTransport>().Transactions(TransportTransactionMode.ReceiveOnly);
}
else
{
config.UseTransport<MsmqTransport>().Transactions(TransportTransactionMode.ReceiveOnly);
}
I have no problem with RabbitMQTransport, But as soon as I switch to MsmqTransport I have the following error.
"The given key (RabbitMQ.RoutingTopologySupportsDelayedDelivery) was not present in the dictionary.'"