diff --git a/lib/Net/2.0/Apache.NMS.ActiveMQ.dll b/lib/Net/2.0/Apache.NMS.ActiveMQ.dll index 9e9ffeb9..113489f5 100644 Binary files a/lib/Net/2.0/Apache.NMS.ActiveMQ.dll and b/lib/Net/2.0/Apache.NMS.ActiveMQ.dll differ diff --git a/lib/Net/2.0/Apache.NMS.ActiveMQ.pdb b/lib/Net/2.0/Apache.NMS.ActiveMQ.pdb index e02499e2..79838de2 100644 Binary files a/lib/Net/2.0/Apache.NMS.ActiveMQ.pdb and b/lib/Net/2.0/Apache.NMS.ActiveMQ.pdb differ diff --git a/lib/Net/2.0/Apache.NMS.MSMQ.dll b/lib/Net/2.0/Apache.NMS.MSMQ.dll deleted file mode 100644 index 19082fe7..00000000 Binary files a/lib/Net/2.0/Apache.NMS.MSMQ.dll and /dev/null differ diff --git a/lib/Net/2.0/Apache.NMS.dll b/lib/Net/2.0/Apache.NMS.dll index b21ece6e..82011039 100644 Binary files a/lib/Net/2.0/Apache.NMS.dll and b/lib/Net/2.0/Apache.NMS.dll differ diff --git a/lib/Net/2.0/Apache.NMS.pdb b/lib/Net/2.0/Apache.NMS.pdb index 30ac2fc8..5bc086df 100644 Binary files a/lib/Net/2.0/Apache.NMS.pdb and b/lib/Net/2.0/Apache.NMS.pdb differ diff --git a/src/Spring/Spring.Messaging.Nms/Messaging/Nms/Connections/CachedSession.cs b/src/Spring/Spring.Messaging.Nms/Messaging/Nms/Connections/CachedSession.cs index 5dea77a3..32920d8b 100644 --- a/src/Spring/Spring.Messaging.Nms/Messaging/Nms/Connections/CachedSession.cs +++ b/src/Spring/Spring.Messaging.Nms/Messaging/Nms/Connections/CachedSession.cs @@ -499,6 +499,16 @@ namespace Spring.Messaging.Nms.Connections return target.CreateTemporaryTopic(); } + /// + /// Deletes the destination. + /// + /// The destination. + public void DeleteDestination(IDestination destination) + { + this.transactionOpen = true; + target.DeleteDestination(destination); + } + /// /// Creates the message. /// diff --git a/test/Spring/Spring.Messaging.Nms.Tests/Messaging/Nms/Connections/TestSession.cs b/test/Spring/Spring.Messaging.Nms.Tests/Messaging/Nms/Connections/TestSession.cs index ee162636..86948314 100644 --- a/test/Spring/Spring.Messaging.Nms.Tests/Messaging/Nms/Connections/TestSession.cs +++ b/test/Spring/Spring.Messaging.Nms.Tests/Messaging/Nms/Connections/TestSession.cs @@ -139,6 +139,15 @@ namespace Spring.Messaging.Nms.Connections throw new NotImplementedException(); } + #region ISession Members + + public void DeleteDestination(IDestination destination) + { + throw new NotImplementedException(); + } + + #endregion + public IMessage CreateMessage() { throw new NotImplementedException();