Author: tabish Date: Thu Mar 8 19:16:40 2012 New Revision: 1298521 URL: http://svn.apache.org/viewvc?rev=1298521&view=rev Log: fix for: https://issues.apache.org/jira/browse/AMQNET-372 Modified: activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/AdvisoryConsumer.cs Modified: activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/AdvisoryConsumer.cs URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/AdvisoryConsumer.cs?rev=1298521&r1=1298520&r2=1298521&view=diff ============================================================================== --- activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/AdvisoryConsumer.cs (original) +++ activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/AdvisoryConsumer.cs Thu Mar 8 19:16:40 2012 @@ -77,6 +77,8 @@ namespace Apache.NMS.ActiveMQ { MessageAck ack = new MessageAck(); ack.AckType = (byte)AckType.ConsumedAck; + ack.ConsumerId = messageDispatch.ConsumerId; + ack.Destination = messageDispatch.Destination; ack.FirstMessageId = messageDispatch.Message.MessageId; ack.MessageCount = deliveredCounter;