Return-Path: X-Original-To: apmail-camel-users-archive@www.apache.org Delivered-To: apmail-camel-users-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 54C3EEE1F for ; Wed, 23 Jan 2013 21:11:31 +0000 (UTC) Received: (qmail 30039 invoked by uid 500); 23 Jan 2013 21:11:30 -0000 Delivered-To: apmail-camel-users-archive@camel.apache.org Received: (qmail 29936 invoked by uid 500); 23 Jan 2013 21:11:30 -0000 Mailing-List: contact users-help@camel.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: users@camel.apache.org Delivered-To: mailing list users@camel.apache.org Received: (qmail 29928 invoked by uid 99); 23 Jan 2013 21:11:30 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 23 Jan 2013 21:11:30 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of rouble@gmail.com designates 209.85.214.170 as permitted sender) Received: from [209.85.214.170] (HELO mail-ob0-f170.google.com) (209.85.214.170) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 23 Jan 2013 21:11:23 +0000 Received: by mail-ob0-f170.google.com with SMTP id wp18so8836102obc.15 for ; Wed, 23 Jan 2013 13:11:02 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:mime-version:from:date:message-id:subject:to :content-type; bh=VXro3bmy3no90HXQyRQBrEOVOKTMk6BDPdXTXs6RVE0=; b=Paf3czkzaryrp6jnnsmD5UgrdAVflDpfhSU6xiD3OujZtqhgJT57j57F7FLKiRAx6N gQPt43HCkCo1zX27bZh/UvngxiWqWIoB4EysbnEz6Q7CazuQ8O0sA6TdBt+RoN7a9+vy cIfw0l7CevCAdEhDhwb32N3Vp64nqEcnHaxzy9/GfEUt2Gt9hl5MmL2NGZ+Ht6JK0f9Z +4NFZtoHzw4GhU71YNDfClqENHqzxs3zCuAQEwa+1N5nxDjPP5eOQYikJtcXvd3c1aME RjC/n2l5kVr4E/mi6Smt/T3BinX2E22bfvu41S9G9yoHLm45qYV1mbaPi9QLDAlSVPHl ohXA== X-Received: by 10.60.7.199 with SMTP id l7mr2176581oea.136.1358975462121; Wed, 23 Jan 2013 13:11:02 -0800 (PST) MIME-Version: 1.0 Received: by 10.76.99.206 with HTTP; Wed, 23 Jan 2013 13:10:22 -0800 (PST) From: Pranab Mehta Date: Wed, 23 Jan 2013 16:10:22 -0500 Message-ID: Subject: Get full request url from Exchange To: users@camel.apache.org Content-Type: text/plain; charset=ISO-8859-1 X-Virus-Checked: Checked by ClamAV on apache.org I am running Camel 2.8, and to proxy a https web service I use the following route: from("servlet:///proxyWebService/api/?matchOnUriPrefix=true") .process(myProcessor) .to("https4://realWebService:8443/api/?bridgeEndpoint=true&throwExceptionOnFailure=false"); Now, in the process leg, I want to be able to extract the full Request URL with hostname and port that was used to access the servlet. I am hoping this information is somewhere in the Exchange, but I am unable to find it. tia, rouble