Return-Path: Delivered-To: apmail-geronimo-activemq-users-archive@www.apache.org Received: (qmail 34892 invoked from network); 12 Dec 2006 11:16:42 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 12 Dec 2006 11:16:42 -0000 Received: (qmail 2036 invoked by uid 500); 12 Dec 2006 11:16:48 -0000 Delivered-To: apmail-geronimo-activemq-users-archive@geronimo.apache.org Received: (qmail 2024 invoked by uid 500); 12 Dec 2006 11:16:48 -0000 Mailing-List: contact activemq-users-help@geronimo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: activemq-users@geronimo.apache.org Delivered-To: mailing list activemq-users@geronimo.apache.org Received: (qmail 2015 invoked by uid 99); 12 Dec 2006 11:16:48 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 12 Dec 2006 03:16:48 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of lists@nabble.com designates 72.21.53.35 as permitted sender) Received: from [72.21.53.35] (HELO talk.nabble.com) (72.21.53.35) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 12 Dec 2006 03:16:36 -0800 Received: from [72.21.53.38] (helo=jubjub.nabble.com) by talk.nabble.com with esmtp (Exim 4.50) id 1Gu5cN-0000Po-G7 for activemq-users@geronimo.apache.org; Tue, 12 Dec 2006 03:16:15 -0800 Message-ID: <7831238.post@talk.nabble.com> Date: Tue, 12 Dec 2006 03:16:15 -0800 (PST) From: David Birdsall To: activemq-users@geronimo.apache.org Subject: Re: NMS and 4.1.0 problems In-Reply-To: <7830978.post@talk.nabble.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Nabble-From: david.birdsall@mxdata.co.uk References: <7776760.post@talk.nabble.com> <7830978.post@talk.nabble.com> X-Virus-Checked: Checked by ClamAV on apache.org Hi, I've just tried running the NMS client with release 4.0.2, and it works fine. OpenWireFormat.cs returns 1,2,30 from ReadByte() in the TcpTransport.ReadLoop(), whereas before it was returning 1,2,0 where the 0 was causing the null command reference. public Object Unmarshal(BinaryReader dis) { // lets ignore the size of the packet if( !sizePrefixDisabled ) { dis.ReadInt32(); } // first byte is the type of the packet byte dataType = dis.ReadByte(); <-- the 1,2,30 / 1,2,0 problem was found here if (dataType != NULL_TYPE) { ... I will switch to using 4.0.2 for now. Many thanks, David -- View this message in context: http://www.nabble.com/NMS-and-4.1.0-problems-tf2787347.html#a7831238 Sent from the ActiveMQ - User mailing list archive at Nabble.com.