Return-Path: Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: (qmail 74600 invoked from network); 4 Nov 2007 18:22:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 4 Nov 2007 18:22:57 -0000 Received: (qmail 11938 invoked by uid 500); 4 Nov 2007 18:22:44 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 11913 invoked by uid 500); 4 Nov 2007 18:22:44 -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 11904 invoked by uid 99); 4 Nov 2007 18:22:44 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 04 Nov 2007 10:22:44 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 04 Nov 2007 18:22:54 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 843A31A9832; Sun, 4 Nov 2007 10:22:34 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r591813 - /activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSFactory.cs Date: Sun, 04 Nov 2007 18:22:34 -0000 To: commits@activemq.apache.org From: chirino@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071104182234.843A31A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: chirino Date: Sun Nov 4 10:22:28 2007 New Revision: 591813 URL: http://svn.apache.org/viewvc?rev=591813&view=rev Log: Updated class names Modified: activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSFactory.cs Modified: activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSFactory.cs URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSFactory.cs?rev=591813&r1=591812&r2=591813&view=diff ============================================================================== --- activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSFactory.cs (original) +++ activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/NMSFactory.cs Sun Nov 4 10:22:28 2007 @@ -92,17 +92,17 @@ if(String.Compare(scheme, "tibco", true) == 0) { cfi.assemblyFileName = "NMS.TIBCO.dll"; - cfi.factoryClassName = "Apache.TibcoEMS.ConnectionFactory"; + cfi.factoryClassName = "Apache.NMS.EMS.ConnectionFactory"; } else if(String.Compare(scheme, "msmq", true) == 0) { cfi.assemblyFileName = "NMS.MSMQ.dll"; - cfi.factoryClassName = "Apache.MSMQ.ConnectionFactory"; + cfi.factoryClassName = "Apache.NMS.MSMQ.ConnectionFactory"; } else { cfi.assemblyFileName = "NMS.ActiveMQ.dll"; - cfi.factoryClassName = "Apache.ActiveMQ.ConnectionFactory"; + cfi.factoryClassName = "Apache.NMS.ActiveMQ.ConnectionFactory"; } return true;