Return-Path: Delivered-To: apmail-activemq-camel-user-archive@locus.apache.org Received: (qmail 6206 invoked from network); 30 Nov 2008 12:10:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 30 Nov 2008 12:10:57 -0000 Received: (qmail 15346 invoked by uid 500); 30 Nov 2008 12:11:08 -0000 Delivered-To: apmail-activemq-camel-user-archive@activemq.apache.org Received: (qmail 15325 invoked by uid 500); 30 Nov 2008 12:11:08 -0000 Mailing-List: contact camel-user-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: camel-user@activemq.apache.org Delivered-To: mailing list camel-user@activemq.apache.org Received: (qmail 15314 invoked by uid 99); 30 Nov 2008 12:11:08 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Nov 2008 04:11:08 -0800 X-ASF-Spam-Status: No, hits=4.1 required=10.0 tests=DNS_FROM_OPENWHOIS,NORMAL_HTTP_TO_IP,SPF_HELO_PASS,SPF_PASS,WEIRD_PORT,WHOIS_MYPRIVREG X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of lists@nabble.com designates 216.139.236.158 as permitted sender) Received: from [216.139.236.158] (HELO kuber.nabble.com) (216.139.236.158) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Nov 2008 12:09:39 +0000 Received: from isper.nabble.com ([192.168.236.156]) by kuber.nabble.com with esmtp (Exim 4.63) (envelope-from ) id 1L6l85-0000Od-0q for camel-user@activemq.apache.org; Sun, 30 Nov 2008 04:10:25 -0800 Message-ID: <20757018.post@talk.nabble.com> Date: Sun, 30 Nov 2008 04:10:25 -0800 (PST) From: "darren.davison" To: camel-user@activemq.apache.org Subject: basic http inout problem MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Nabble-From: darren@davisononline.org X-Virus-Checked: Checked by ClamAV on apache.org hi, I've been playing with Camel for a couple of days as it looks like it will be really useful on an upcoming project for us, but I seem to be hitting some basic issues. One is as follows: trying to take a message off a queue, pass to an http endpoint, and place the reply message on another queue. Here's the route; from("activemq:queue/in") .to("http://192.168.1.16:9090/receiver") .to("activemq:queue/reply"); The message is correctly taken from queue/in and used in the call to the http listener, but I would have expected the *reply* from the http call (body of the response) to end up on the reply queue. What I get on the reply queue is a copy of the message from the in queue. Almost as though the route had been; from("activemq:queue/in").to("activemq:queue/reply"). Is this an erroneous assumption? Cheers, -- View this message in context: http://www.nabble.com/basic-http-inout-problem-tp20757018s22882p20757018.html Sent from the Camel - Users mailing list archive at Nabble.com.