Return-Path: Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: (qmail 45198 invoked from network); 10 Dec 2009 16:19:02 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 10 Dec 2009 16:19:02 -0000 Received: (qmail 93447 invoked by uid 500); 10 Dec 2009 16:19:02 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 93388 invoked by uid 500); 10 Dec 2009 16:19:01 -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 93379 invoked by uid 99); 10 Dec 2009 16:19:01 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 10 Dec 2009 16:19:01 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED 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, 10 Dec 2009 16:18:59 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 3408423889B8; Thu, 10 Dec 2009 16:18:38 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r889311 - /activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Protocol/StompWireFormat.cs Date: Thu, 10 Dec 2009 16:18:38 -0000 To: commits@activemq.apache.org From: tabish@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20091210161838.3408423889B8@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: tabish Date: Thu Dec 10 16:18:37 2009 New Revision: 889311 URL: http://svn.apache.org/viewvc?rev=889311&view=rev Log: * StompWireFormat.cs: Set all the properties in the Connect command now. Modified: activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Protocol/StompWireFormat.cs Modified: activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Protocol/StompWireFormat.cs URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Protocol/StompWireFormat.cs?rev=889311&r1=889310&r2=889311&view=diff ============================================================================== --- activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Protocol/StompWireFormat.cs (original) +++ activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Protocol/StompWireFormat.cs Thu Dec 10 16:18:37 2009 @@ -251,9 +251,9 @@ StompFrame frame = new StompFrame("CONNECT"); frame.SetProperty("client-id", command.ClientId); - //frame.SetProperty("login", command.UserName); - //frame.SetProperty("passcode", command.Password); - //frame.SetProperty("request-id", command.CommandId); + frame.SetProperty("login", command.UserName); + frame.SetProperty("passcode", command.Password); + frame.SetProperty("request-id", command.CommandId); frame.ToStream(dataOut); }