Return-Path: Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: (qmail 76424 invoked from network); 6 Nov 2007 15:07:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 6 Nov 2007 15:07:54 -0000 Received: (qmail 17271 invoked by uid 500); 6 Nov 2007 15:07:35 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 17245 invoked by uid 500); 6 Nov 2007 15:07:34 -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 16794 invoked by uid 99); 6 Nov 2007 15:07:33 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Nov 2007 07:07:32 -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; Tue, 06 Nov 2007 15:08:12 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 124871A9832; Tue, 6 Nov 2007 07:07:21 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r592449 - /activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/OpenWireFormat.cs Date: Tue, 06 Nov 2007 15:07:20 -0000 To: commits@activemq.apache.org From: chirino@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071106150721.124871A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: chirino Date: Tue Nov 6 07:07:20 2007 New Revision: 592449 URL: http://svn.apache.org/viewvc?rev=592449&view=rev Log: Fix need due to namespace move. Modified: activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/OpenWireFormat.cs Modified: activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/OpenWireFormat.cs URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/OpenWireFormat.cs?rev=592449&r1=592448&r2=592449&view=diff ============================================================================== --- activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/OpenWireFormat.cs (original) +++ activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/OpenWireFormat.cs Tue Nov 6 07:07:20 2007 @@ -69,7 +69,7 @@ set { Assembly dll = Assembly.GetExecutingAssembly(); - Type type = dll.GetType("ActiveMQ.OpenWire.V"+value+".MarshallerFactory", false); + Type type = dll.GetType("Apache.NMS.ActiveMQ.OpenWire.V"+value+".MarshallerFactory", false); IMarshallerFactory factory = (IMarshallerFactory) Activator.CreateInstance(type); factory.configure(this); version = value;