Return-Path: Delivered-To: apmail-geronimo-activemq-commits-archive@www.apache.org Received: (qmail 18375 invoked from network); 19 Oct 2006 01:29:21 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 19 Oct 2006 01:29:21 -0000 Received: (qmail 22819 invoked by uid 500); 19 Oct 2006 01:29:20 -0000 Delivered-To: apmail-geronimo-activemq-commits-archive@geronimo.apache.org Received: (qmail 22798 invoked by uid 500); 19 Oct 2006 01:29:20 -0000 Mailing-List: contact activemq-commits-help@geronimo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: activemq-dev@geronimo.apache.org Delivered-To: mailing list activemq-commits@geronimo.apache.org Received: (qmail 22789 invoked by uid 99); 19 Oct 2006 01:29:20 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 18 Oct 2006 18:29:20 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 18 Oct 2006 18:29:19 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 7B7D51A981A; Wed, 18 Oct 2006 18:28:59 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r465440 - /incubator/activemq/activemq-dotnet/trunk/src/main/csharp/ActiveMQ/OpenWire/V2/MarshallerFactory.cs Date: Thu, 19 Oct 2006 01:28:59 -0000 To: activemq-commits@geronimo.apache.org From: chirino@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20061019012859.7B7D51A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: chirino Date: Wed Oct 18 18:28:58 2006 New Revision: 465440 URL: http://svn.apache.org/viewvc?view=rev&rev=465440 Log: Regenerated the marshaller factory Modified: incubator/activemq/activemq-dotnet/trunk/src/main/csharp/ActiveMQ/OpenWire/V2/MarshallerFactory.cs Modified: incubator/activemq/activemq-dotnet/trunk/src/main/csharp/ActiveMQ/OpenWire/V2/MarshallerFactory.cs URL: http://svn.apache.org/viewvc/incubator/activemq/activemq-dotnet/trunk/src/main/csharp/ActiveMQ/OpenWire/V2/MarshallerFactory.cs?view=diff&rev=465440&r1=465439&r2=465440 ============================================================================== --- incubator/activemq/activemq-dotnet/trunk/src/main/csharp/ActiveMQ/OpenWire/V2/MarshallerFactory.cs (original) +++ incubator/activemq/activemq-dotnet/trunk/src/main/csharp/ActiveMQ/OpenWire/V2/MarshallerFactory.cs Wed Oct 18 18:28:58 2006 @@ -34,10 +34,11 @@ /// /// Used to create marshallers for a specific version of the wire protocol /// - public class MarshallerFactory + public class MarshallerFactory : IMarshallerFactory { public void configure(OpenWireFormat format) { + format.clearMarshallers(); format.addMarshaller(new ActiveMQBytesMessageMarshaller()); format.addMarshaller(new ActiveMQMapMessageMarshaller()); format.addMarshaller(new ActiveMQMessageMarshaller());