To increase the responsiveness of the application the Message handler is responding with multiple responses. But its observed that the messages are delivered to the destination only after the message handling is fully completed even though the transaction is disabled as follows var busConfiguration = new BusConfiguration(); busConfiguration.Transactions().Disable();
we have the code as follows: using MyMessages; using NServiceBus; using System;
public class RequestDataMessageHandler : IHandleMessages<RequestDataMessage>
{
public IBus Bus { get; set; }
public void Handle(RequestDataMessage message)
{
Console.WriteLine("Received request {0}.", message.DataId);
Console.WriteLine("String received: {0}.", message.String);
var response1 = new DataResponseMessage
{
DataId = message.DataId,
String = "InProgress"
};
Bus.Reply(response1);
try
{
TimeConsumingActivity();
var response = new DataResponseMessage
{
DataId = message.DataId,
String = message.String
};
Bus.Reply(response);
}
catch
{
var response2 = new DataResponseMessage
{
DataId = message.DataId,
String = "Error in the process"
};
Bus.Reply(response2);
}
}
}
but its observer that response1 and response reaches destination only after TimeConsumingActivity is done (This is not the problem of the order)
I have answered on NServiceBus Google group