Return-Path: Delivered-To: apmail-camel-dev-archive@www.apache.org Received: (qmail 94935 invoked from network); 9 Mar 2009 10:46:04 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 9 Mar 2009 10:46:04 -0000 Received: (qmail 54606 invoked by uid 500); 9 Mar 2009 10:46:04 -0000 Delivered-To: apmail-camel-dev-archive@camel.apache.org Received: (qmail 54416 invoked by uid 500); 9 Mar 2009 10:46:03 -0000 Mailing-List: contact dev-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 dev@camel.apache.org Received: (qmail 54402 invoked by uid 500); 9 Mar 2009 10:46:03 -0000 Delivered-To: apmail-activemq-camel-dev@activemq.apache.org Received: (qmail 54398 invoked by uid 99); 9 Mar 2009 10:46:03 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 09 Mar 2009 03:46:03 -0700 X-ASF-Spam-Status: No, hits=-1998.5 required=10.0 tests=ALL_TRUSTED,WEIRD_PORT X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 09 Mar 2009 10:46:01 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id F0C7B234C044 for ; Mon, 9 Mar 2009 03:45:39 -0700 (PDT) Message-ID: <1990303844.1236595539985.JavaMail.jira@brutus> Date: Mon, 9 Mar 2009 03:45:39 -0700 (PDT) From: "Claus Ibsen (JIRA)" To: camel-dev@activemq.apache.org Subject: [jira] Resolved: (CAMEL-1376) wiretap() to be able to send an InOnly message exchange with the result of an InOut request without affecting the current message exchange In-Reply-To: <676048452.1235475539388.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: ae95407df07c98740808b2ef9da0087c X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/activemq/browse/CAMEL-1376?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Claus Ibsen resolved CAMEL-1376. -------------------------------- Resolution: Fixed Committed revision 751648. > wiretap() to be able to send an InOnly message exchange with the result of an InOut request without affecting the current message exchange > ------------------------------------------------------------------------------------------------------------------------------------------ > > Key: CAMEL-1376 > URL: https://issues.apache.org/activemq/browse/CAMEL-1376 > Project: Apache Camel > Issue Type: Improvement > Components: camel-core > Reporter: James Strachan > Assignee: Claus Ibsen > Fix For: 2.0.0 > > > we should be able to do something like this... > {code} > from("jetty:http://localhost:8585/cxf/HelloWorld") > .to("http://localhost:8080/cxf/HelloWorld") > .wiretap("seda:cheese"); > {code} > such that the *seda:cheese* gets the output of the HelloWorld service as an InOut - but the response is returned fine to the HTTP client. i.e. the presence of the wiretap() does not in any way affect the exchange - it appears to work exactly the same as > {code} > from("jetty:http://localhost:8585/cxf/HelloWorld") > .to("http://localhost:8080/cxf/HelloWorld"); > {code} > and any output of the seda:cheese does not affect the response to the HTTP client. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.