Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 62CA1200BBF for ; Mon, 14 Nov 2016 21:46:31 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 61474160B06; Mon, 14 Nov 2016 20:46:31 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id ABCC1160AF4 for ; Mon, 14 Nov 2016 21:46:30 +0100 (CET) Received: (qmail 7692 invoked by uid 500); 14 Nov 2016 20:46:29 -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 7681 invoked by uid 99); 14 Nov 2016 20:46:29 -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; Mon, 14 Nov 2016 20:46:29 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 7E9F8E00C7; Mon, 14 Nov 2016 20:46:29 +0000 (UTC) From: zregvart To: dev@camel.apache.org Reply-To: dev@camel.apache.org Message-ID: Subject: [GitHub] camel pull request #1274: CAMEL-10478 Support simple language expressions in... Content-Type: text/plain Date: Mon, 14 Nov 2016 20:46:29 +0000 (UTC) archived-at: Mon, 14 Nov 2016 20:46:31 -0000 GitHub user zregvart opened a pull request: https://github.com/apache/camel/pull/1274 CAMEL-10478 Support simple language expressions in header values in camel-salesforce This is a PR against 2.18.x, as this functionality would be beneficial to 2.18 users as well. Implements support for simple language expressions in header values for the camel-salesforce component. AbstractSalesforceProcessor was modified to post-process values retrieved from message header and evaluate them with simple language. This greatly simplifies usage in downstream salesforce components as they can have access upstream values. For instance: salesforce:queryMore?sObjectQuery=${header.nextRecordsUrl}... You can merge this pull request into a Git repository by running: $ git pull https://github.com/zregvart/camel CAMEL-10478-camel-2.18.x Alternatively you can review and apply these changes as the patch at: https://github.com/apache/camel/pull/1274.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #1274 ---- commit 6a28486d6714672ea67a40331d339df506aa1db2 Author: Zoran Regvart Date: 2016-11-14T20:45:07Z Support simple language expressions in header values in camel-salesforce Implements support for simple language expressions in header values for the camel-salesforce component. AbstractSalesforceProcessor was modified to post-process values retrieved from message header and evaluate them with simple language. This greatly simplifies usage in downstream salesforce components as they can have access upstream values. For instance: salesforce:queryMore?sObjectQuery=${header.nextRecordsUrl}... ---- --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastructure@apache.org or file a JIRA ticket with INFRA. ---