Return-Path: Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: (qmail 26663 invoked from network); 26 Aug 2008 17:32:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 26 Aug 2008 17:32:29 -0000 Received: (qmail 30882 invoked by uid 500); 26 Aug 2008 17:32:24 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 30864 invoked by uid 500); 26 Aug 2008 17:32:24 -0000 Mailing-List: contact commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list commits@activemq.apache.org Received: (qmail 30802 invoked by uid 99); 26 Aug 2008 17:32:24 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 26 Aug 2008 10:32:24 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 26 Aug 2008 17:31:34 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id E468F23889C0; Tue, 26 Aug 2008 10:31:34 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r689145 - /activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/Util/SessionUtils.cs Date: Tue, 26 Aug 2008 17:31:34 -0000 To: commits@activemq.apache.org From: jgomes@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080826173134.E468F23889C0@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jgomes Date: Tue Aug 26 10:31:34 2008 New Revision: 689145 URL: http://svn.apache.org/viewvc?rev=689145&view=rev Log: Changed destination prefix specifiers from "queue:" to "queue://", "topic:" to "topic://", "temp-queue:" to "temp-queue://", and "temp-topic:" to "temp-topic://". This makes the destination prefix specifier more consistent with ActiveMQ specifiers. Modified: activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/Util/SessionUtils.cs Modified: activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/Util/SessionUtils.cs URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/Util/SessionUtils.cs?rev=689145&r1=689144&r2=689145&view=diff ============================================================================== --- activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/Util/SessionUtils.cs (original) +++ activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/Util/SessionUtils.cs Tue Aug 26 10:31:34 2008 @@ -23,10 +23,10 @@ /// public class SessionUtil { - private static string QueuePrefix = "queue:"; - private static string TopicPrefix = "topic:"; - private static string TempQueuePrefix = "temp-queue:"; - private static string TempTopicPrefix = "temp-topic:"; + private static string QueuePrefix = "queue://"; + private static string TopicPrefix = "topic://"; + private static string TempQueuePrefix = "temp-queue://"; + private static string TempTopicPrefix = "temp-topic://"; /// /// Get the destination by parsing the embedded type prefix. Default is Queue if no prefix is @@ -35,10 +35,10 @@ /// Session object to use to get the destination. /// Name of destination with embedded prefix. The embedded prefix can be one of the following: /// - /// queue: - /// topic: - /// temp-queue: - /// temp-topic: + /// queue:// + /// topic:// + /// temp-queue:// + /// temp-topic:// /// /// /// @@ -53,10 +53,10 @@ /// Session object to use to get the destination. /// Name of destination with embedded prefix. The embedded prefix can be one of the following: /// - /// queue: - /// topic: - /// temp-queue: - /// temp-topic: + /// queue:// + /// topic:// + /// temp-queue:// + /// temp-topic:// /// /// /// Default type if no embedded prefix is specified.