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 71C0F200D37 for ; Wed, 25 Oct 2017 23:44:50 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 703E41609CE; Wed, 25 Oct 2017 21:44:50 +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 BF1EA160BDA for ; Wed, 25 Oct 2017 23:44:49 +0200 (CEST) Received: (qmail 52971 invoked by uid 500); 25 Oct 2017 21:44:49 -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 52955 invoked by uid 99); 25 Oct 2017 21:44:48 -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; Wed, 25 Oct 2017 21:44:48 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id D2C6DDFC2E; Wed, 25 Oct 2017 21:44:48 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: clebertsuconic@apache.org To: commits@activemq.apache.org Date: Wed, 25 Oct 2017 21:44:49 -0000 Message-Id: In-Reply-To: <9348b4f52a494c0c95027c0d4d98118d@git.apache.org> References: <9348b4f52a494c0c95027c0d4d98118d@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [2/4] activemq-artemis git commit: NO-JIRA fix parameter name in HTTP example archived-at: Wed, 25 Oct 2017 21:44:50 -0000 NO-JIRA fix parameter name in HTTP example Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/c2f0c152 Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/c2f0c152 Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/c2f0c152 Branch: refs/heads/master Commit: c2f0c152cc27f5e356dee03a82d46b76ec4aad82 Parents: 448ff08 Author: Justin Bertram Authored: Wed Oct 25 09:08:51 2017 -0500 Committer: Justin Bertram Committed: Wed Oct 25 12:45:48 2017 -0500 ---------------------------------------------------------------------- .../apache/activemq/artemis/jms/example/HttpTransportExample.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/c2f0c152/examples/features/standard/http-transport/src/main/java/org/apache/activemq/artemis/jms/example/HttpTransportExample.java ---------------------------------------------------------------------- diff --git a/examples/features/standard/http-transport/src/main/java/org/apache/activemq/artemis/jms/example/HttpTransportExample.java b/examples/features/standard/http-transport/src/main/java/org/apache/activemq/artemis/jms/example/HttpTransportExample.java index 0dded7a..bb189d3 100644 --- a/examples/features/standard/http-transport/src/main/java/org/apache/activemq/artemis/jms/example/HttpTransportExample.java +++ b/examples/features/standard/http-transport/src/main/java/org/apache/activemq/artemis/jms/example/HttpTransportExample.java @@ -39,7 +39,7 @@ public class HttpTransportExample { Queue queue = ActiveMQJMSClient.createQueue("exampleQueue"); // Step 3. Perform a lookup on the Connection Factory - ConnectionFactory cf = new ActiveMQConnectionFactory("tcp://localhost:8080?http-enabled=true"); + ConnectionFactory cf = new ActiveMQConnectionFactory("tcp://localhost:8080?httpEnabled=true"); // Step 4.Create a JMS Connection connection = cf.createConnection();