Return-Path: X-Original-To: apmail-camel-commits-archive@www.apache.org Delivered-To: apmail-camel-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 007CF18985 for ; Wed, 7 Oct 2015 05:39:34 +0000 (UTC) Received: (qmail 91502 invoked by uid 500); 7 Oct 2015 05:39:33 -0000 Delivered-To: apmail-camel-commits-archive@camel.apache.org Received: (qmail 91370 invoked by uid 500); 7 Oct 2015 05:39:33 -0000 Mailing-List: contact commits-help@camel.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@camel.apache.org Delivered-To: mailing list commits@camel.apache.org Received: (qmail 91354 invoked by uid 99); 7 Oct 2015 05:39:33 -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, 07 Oct 2015 05:39:33 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 4053BDFFA9; Wed, 7 Oct 2015 05:39:32 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: davsclaus@apache.org To: commits@camel.apache.org Date: Wed, 07 Oct 2015 05:39:33 -0000 Message-Id: <7583ad52acbb416fad7ca568efa387e1@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [2/4] camel git commit: CAMEL-9191: Fixed example. Thanks to Tim for the patch. CAMEL-9191: Fixed example. Thanks to Tim for the patch. Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/d406c87f Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/d406c87f Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/d406c87f Branch: refs/heads/master Commit: d406c87f1c4d1a9144dbae63766c6880936a77fc Parents: edee114 Author: Claus Ibsen Authored: Wed Oct 7 07:17:46 2015 +0200 Committer: Claus Ibsen Committed: Wed Oct 7 07:17:46 2015 +0200 ---------------------------------------------------------------------- .../main/java/org/apache/camel/example/server/ServerRoutes.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/d406c87f/examples/camel-example-spring-jms/src/main/java/org/apache/camel/example/server/ServerRoutes.java ---------------------------------------------------------------------- diff --git a/examples/camel-example-spring-jms/src/main/java/org/apache/camel/example/server/ServerRoutes.java b/examples/camel-example-spring-jms/src/main/java/org/apache/camel/example/server/ServerRoutes.java index 71813f6..3d80456 100644 --- a/examples/camel-example-spring-jms/src/main/java/org/apache/camel/example/server/ServerRoutes.java +++ b/examples/camel-example-spring-jms/src/main/java/org/apache/camel/example/server/ServerRoutes.java @@ -42,7 +42,7 @@ public class ServerRoutes extends RouteBuilder { //from("jms:queue:numbers").bean("multiplier", "multiply"); // the same as above but expressed as a URI configuration - //from("jms:queue:numbers").to("bean:multiplier?methodName=multiply"); + //from("jms:queue:numbers").to("bean:multiplier?method=multiply"); } }