Return-Path: X-Original-To: apmail-camel-issues-archive@minotaur.apache.org Delivered-To: apmail-camel-issues-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 2098D18BF3 for ; Sun, 1 Nov 2015 15:22:28 +0000 (UTC) Received: (qmail 87854 invoked by uid 500); 1 Nov 2015 15:22:28 -0000 Delivered-To: apmail-camel-issues-archive@camel.apache.org Received: (qmail 87828 invoked by uid 500); 1 Nov 2015 15:22:28 -0000 Mailing-List: contact issues-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 issues@camel.apache.org Received: (qmail 87819 invoked by uid 99); 1 Nov 2015 15:22:27 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 01 Nov 2015 15:22:27 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id B982A2C14E1 for ; Sun, 1 Nov 2015 15:22:27 +0000 (UTC) Date: Sun, 1 Nov 2015 15:22:27 +0000 (UTC) From: "Edward Welch (JIRA)" To: issues@camel.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (CAMEL-9281) Http4 component removes trailing slashes from http requests (producer) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 Edward Welch created CAMEL-9281: ----------------------------------- Summary: Http4 component removes trailing slashes from http requests (producer) Key: CAMEL-9281 URL: https://issues.apache.org/jira/browse/CAMEL-9281 Project: Camel Issue Type: Bug Components: camel-http, camel-http4 Affects Versions: 2.15.4 Reporter: Edward Welch I have created a scenario which seems to exploit a bug in the HttpHelper createURL method. My use case: Using http4 component in an http proxy with bridgeEndpoint true Send a request such as http://somesite/contextpath Request is forwarded by my proxy to a tomcat server. Tomcat will reply with a 302 and a new Location of http://somesite/contextpath/ as this is a built in behavior of tomcat to redirect the caller to the contextpath INCLUDING the trailing slash I have http client configured with httpClient.redirectsEnabled=false Therefore the 302 is sent back through my proxy to the caller. The caller then makes the call to http://somesite/contextpath/ This is where the problem occurs, within the createUrl method: {code} String path = exchange.getIn().getHeader(Exchange.HTTP_PATH, String.class); // NOW the HTTP_PATH is just related path, we don't need to trim it if (path != null) { if (path.startsWith("/")) { path = path.substring(1); } if (path.length() > 0) { // make sure that there is exactly one "/" between HTTP_URI and // HTTP_PATH if (!uri.endsWith("/")) { uri = uri + "/"; } uri = uri.concat(path); } } {code} When the second request is made with the trailing slash, the string "path" is / (just a single forward slash) This hits the first conditional and results in true, which the following substring then removes this slash. Now path.length() is not > 0 so the second conditional evaluates false. And we end up with a uri returned that no longer has the trailing slash. This is sent to Tomcat, Tomcat then promptly returns another 302 and a redirect loop is created. I think the intent of this block of code is to combine the uri and path and make sure there isn't a duplicate forward slash? So the simplest fix I can suggest would be something like {code} String path = exchange.getIn().getHeader(Exchange.HTTP_PATH, String.class); // NOW the HTTP_PATH is just related path, we don't need to trim it if (path != null && ! path.equals("/")) { if (path.startsWith("/")) { path = path.substring(1); } if (path.length() > 0) { // make sure that there is exactly one "/" between HTTP_URI and // HTTP_PATH if (!uri.endsWith("/")) { uri = uri + "/"; } uri = uri.concat(path); } } {code} Where we would just check for this case explicitly with: if (path != null && ! path.equals("/")) { Thoughts? I could probably put together a PR and add some test cases -- This message was sent by Atlassian JIRA (v6.3.4#6332)