When we use System.Messaging to send a message remotely, it work correctly i.e. I can see the message on the queue in the remore machine.
However when we attempt to perform the same task i.e. send a message remotely using NServiceBus, the message does not appear in the remote queue, it seems the message disappears
Note, we have the following configuration in the clients app.config file:
<UnicastBusConfig>
<MessageEndpointMappings>
<add Messages="CCSMessage.ITaskCompleted, CCSMessage" Endpoint="[email protected]" />
</MessageEndpointMappings>
</UnicastBusConfig>
We bootstrap the client using the following fluent configuration:
Configure.With()
.CastleWindsorBuilder(_container)
.XmlSerializer()
.MsmqTransport()
.IsTransactional(true)
.PurgeOnStartup(false)
.UnicastBus()
.ImpersonateSender(false)
.CreateBus()
.Start();
Is there anything that we are obviously doing incorrectly?