You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by cl...@apache.org on 2017/10/25 21:44:49 UTC

[2/4] activemq-artemis git commit: NO-JIRA fix parameter name in HTTP example

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 <jb...@apache.org>
Authored: Wed Oct 25 09:08:51 2017 -0500
Committer: Justin Bertram <jb...@apache.org>
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();