Return-Path: Delivered-To: apmail-camel-dev-archive@www.apache.org Received: (qmail 59363 invoked from network); 11 Feb 2009 17:42:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 11 Feb 2009 17:42:28 -0000 Received: (qmail 87636 invoked by uid 500); 11 Feb 2009 17:42:27 -0000 Delivered-To: apmail-camel-dev-archive@camel.apache.org Received: (qmail 87549 invoked by uid 500); 11 Feb 2009 17:42:27 -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 87538 invoked by uid 500); 11 Feb 2009 17:42:27 -0000 Delivered-To: apmail-activemq-camel-dev@activemq.apache.org Received: (qmail 87535 invoked by uid 99); 11 Feb 2009 17:42:27 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Feb 2009 09:42:27 -0800 X-ASF-Spam-Status: No, hits=-1999.8 required=10.0 tests=ALL_TRUSTED,WHOIS_MYPRIVREG 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; Wed, 11 Feb 2009 17:42:20 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 5A0E9234C48B for ; Wed, 11 Feb 2009 09:41:59 -0800 (PST) Message-ID: <2019125204.1234374119367.JavaMail.jira@brutus> Date: Wed, 11 Feb 2009 09:41:59 -0800 (PST) From: "Martin Krasser (JIRA)" To: camel-dev@activemq.apache.org Subject: [jira] Updated: (CAMEL-209) Content Encrichment support In-Reply-To: <16841994.1194286462173.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/activemq/browse/CAMEL-209?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Martin Krasser updated CAMEL-209: --------------------------------- Attachment: camel-spring.patch camel-core.patch Attached are two patches that add content support enrichment to Camel trunk. A Java DSL example is {noformat} AggregationStrategy myAggregationStartegy = ... from("direct:start") .enrich("direct:resource", myAggregationStrategy) .to("mock:result"); // get additional data from this endpoint from("direct:resource") .transform().constant("blah"); ... {noformat} A Spring DSL example is {noformat} blah {noformat} If you don't have any objections to these patches I'll add some documentation to the Camel Wiki. > Content Encrichment support > ---------------------------- > > Key: CAMEL-209 > URL: https://issues.apache.org/activemq/browse/CAMEL-209 > Project: Apache Camel > Issue Type: Improvement > Components: camel-core > Reporter: Nicky Sandhu > Fix For: 2.0.0 > > Attachments: camel-core.patch, camel-spring.patch > > > ContentEnricher (http://www.enterpriseintegrationpatterns.com/DataEnricher.html) support is needed. Here's a thread that outlines the usecase http://www.nabble.com/How-to-enrich-message-with-the-result-of-other-invocation-t4714129s22882.html -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.