Author: tabish
Date: Fri Sep 3 18:50:25 2010
New Revision: 992415
URL: http://svn.apache.org/viewvc?rev=992415&view=rev
Log:
Don't check for NMSReplyTo equality here since the broker and alter the replyTo
address to construct a route as in the Stomp case.
Modified:
activemq/activemq-dotnet/Apache.NMS/trunk/src/test/csharp/NMSPropertyTest.cs
Modified:
activemq/activemq-dotnet/Apache.NMS/trunk/src/test/csharp/NMSPropertyTest.cs
URL:
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS/trunk/src/test/csharp/NMSPropertyTest.cs?rev=992415&r1=992414&r2=992415&view=diff
==============================================================================
---
activemq/activemq-dotnet/Apache.NMS/trunk/src/test/csharp/NMSPropertyTest.cs
(original)
+++
activemq/activemq-dotnet/Apache.NMS/trunk/src/test/csharp/NMSPropertyTest.cs
Fri Sep 3 18:50:25 2010
@@ -52,11 +52,9 @@ namespace Apache.NMS.Test
producer.Priority = priority;
producer.DeliveryMode =
deliveryMode;
ITextMessage request =
session.CreateTextMessage(expectedText);
- ITemporaryQueue replyTo =
session.CreateTemporaryQueue();
// Set the headers
request.NMSCorrelationID =
correlationID;
- request.NMSReplyTo = replyTo;
request.NMSType = type;
request.Properties["NMSXGroupID"] = groupID;
request.Properties["NMSXGroupSeq"] = groupSeq;
@@ -75,7 +73,6 @@ namespace Apache.NMS.Test
Assert.AreEqual(type,
message.NMSType, "NMSType does not match");
Assert.AreEqual(groupID,
message.Properties["NMSXGroupID"], "NMSXGroupID does not match");
Assert.AreEqual(groupSeq,
message.Properties["NMSXGroupSeq"], "NMSXGroupSeq does not match");
- Assert.AreEqual(replyTo,
message.NMSReplyTo, "NMSReplyTo does not match");
}
}
}