Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 4B25F200C53 for ; Tue, 7 Mar 2017 00:29:27 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 4A205160B89; Mon, 6 Mar 2017 23:29:27 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 76585160B76 for ; Tue, 7 Mar 2017 00:29:26 +0100 (CET) Received: (qmail 19724 invoked by uid 500); 6 Mar 2017 23:29:25 -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 19715 invoked by uid 99); 6 Mar 2017 23:29:25 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Mar 2017 23:29:25 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 93793DFBD9; Mon, 6 Mar 2017 23:29:25 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: tabish@apache.org To: commits@activemq.apache.org Date: Mon, 06 Mar 2017 23:29:25 -0000 Message-Id: <4eb312cf45504de28dfef7461a3790f9@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [01/50] [abbrv] activemq-nms-stomp git commit: Merge in fixes from trunk archived-at: Mon, 06 Mar 2017 23:29:27 -0000 Repository: activemq-nms-stomp Updated Branches: refs/heads/1.2.x [created] ddd11a496 refs/heads/1.3.x [created] 7e3beeb6b refs/heads/1.4.x [created] 3c866c59d refs/heads/1.5.x [created] 77473f8ec refs/heads/1.6.x [created] 3c7acacab refs/heads/1.7.x [created] 627095830 refs/heads/master [created] 4ba60e96c Merge in fixes from trunk Project: http://git-wip-us.apache.org/repos/asf/activemq-nms-stomp/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq-nms-stomp/commit/ecfa0000 Tree: http://git-wip-us.apache.org/repos/asf/activemq-nms-stomp/tree/ecfa0000 Diff: http://git-wip-us.apache.org/repos/asf/activemq-nms-stomp/diff/ecfa0000 Branch: refs/heads/1.2.x Commit: ecfa00005976279160c5839f3e58f37d676781ee Parents: 4b981ae Author: Timothy A. Bish Authored: Tue Feb 9 14:33:03 2010 +0000 Committer: Timothy A. Bish Committed: Tue Feb 9 14:33:03 2010 +0000 ---------------------------------------------------------------------- nant-common.xml | 28 ++++++++++++++-------------- nant.build | 4 ++-- src/main/csharp/ConnectionFactory.cs | 6 +++--- 3 files changed, 19 insertions(+), 19 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq-nms-stomp/blob/ecfa0000/nant-common.xml ---------------------------------------------------------------------- diff --git a/nant-common.xml b/nant-common.xml index 1be2614..4099f39 100644 --- a/nant-common.xml +++ b/nant-common.xml @@ -41,7 +41,7 @@ - + @@ -194,18 +194,6 @@ - - - - - - - - - - - - @@ -234,7 +222,7 @@ - + @@ -242,6 +230,18 @@ + + + + + + + + + + + + http://git-wip-us.apache.org/repos/asf/activemq-nms-stomp/blob/ecfa0000/nant.build ---------------------------------------------------------------------- diff --git a/nant.build b/nant.build index 3605c1a..1b1a499 100644 --- a/nant.build +++ b/nant.build @@ -22,8 +22,8 @@ - - + + http://git-wip-us.apache.org/repos/asf/activemq-nms-stomp/blob/ecfa0000/src/main/csharp/ConnectionFactory.cs ---------------------------------------------------------------------- diff --git a/src/main/csharp/ConnectionFactory.cs b/src/main/csharp/ConnectionFactory.cs index 4374e97..d34cd5f 100755 --- a/src/main/csharp/ConnectionFactory.cs +++ b/src/main/csharp/ConnectionFactory.cs @@ -111,10 +111,10 @@ namespace Apache.NMS.Stomp connection = new Connection(uri, transport, this.ClientIdGenerator); - ConfigureConnection(connection); + connection.UserName = userName; + connection.Password = password; - connection.UserName = this.connectionUserName; - connection.Password = this.connectionPassword; + ConfigureConnection(connection); if(this.clientId != null) {