Return-Path: Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: (qmail 67900 invoked from network); 17 Dec 2009 21:46:21 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 17 Dec 2009 21:46:21 -0000 Received: (qmail 81945 invoked by uid 500); 17 Dec 2009 21:46:21 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 81894 invoked by uid 500); 17 Dec 2009 21:46:21 -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 81884 invoked by uid 99); 17 Dec 2009 21:46:21 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 17 Dec 2009 21:46:21 +0000 X-ASF-Spam-Status: No, hits=-2.6 required=5.0 tests=AWL,BAYES_00 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; Thu, 17 Dec 2009 21:46:16 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 3A47523889D2; Thu, 17 Dec 2009 21:45:56 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r891930 - /activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/OpenWire/OpenWireFormat.cs Date: Thu, 17 Dec 2009 21:45:56 -0000 To: commits@activemq.apache.org From: tabish@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20091217214556.3A47523889D2@eris.apache.org> Author: tabish Date: Thu Dec 17 21:45:55 2009 New Revision: 891930 URL: http://svn.apache.org/viewvc?rev=891930&view=rev Log: http://issues.apache.org/activemq/browse/AMQNET-220 Sets the prefered wireformat to V5 which allows the RemoveInfo command to properly transmit it lastDeliveredSequenceId which allows the client to shutdown without all its messages that weren't delivered since a rollback occurred being tagged as redelived. 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=891930&r1=891929&r2=891930&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 Thu Dec 17 21:45:55 2009 @@ -60,7 +60,7 @@ PreferedWireFormatInfo.MaxInactivityDuration = 30000; PreferedWireFormatInfo.MaxInactivityDurationInitialDelay = 10000; PreferedWireFormatInfo.CacheSize = 0; - PreferedWireFormatInfo.Version = 3; + PreferedWireFormatInfo.Version = 5; dataMarshallers = new BaseDataStreamMarshaller[256]; Version = 1;