You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "Claus Ibsen (JIRA)" <ji...@apache.org> on 2016/08/10 09:15:20 UTC

[jira] [Resolved] (CAMEL-9590) Camel decode URI wrong

     [ https://issues.apache.org/jira/browse/CAMEL-9590?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Claus Ibsen resolved CAMEL-9590.
--------------------------------
    Resolution: Won't Fix

> Camel decode URI wrong
> ----------------------
>
>                 Key: CAMEL-9590
>                 URL: https://issues.apache.org/jira/browse/CAMEL-9590
>             Project: Camel
>          Issue Type: Bug
>          Components: camel-http4
>    Affects Versions: 2.15.5, 2.16.2
>         Environment: Windows 10, Eclipse
>            Reporter: Björn Paulsen
>
> When using a plus sign "+" in the URI, camel translate the URI wrong. Same Problem when encode the URI first.
> Here is a Example:
> {code:title=Camel Route|borderStyle=solid}
> public class defaultRoutes extends RouteBuilder {
> 	public void configure() throws UnsupportedEncodingException {
>     		String url = "plus +wrong";
>     		System.err.println("URL before: " + url); // Output plus +wrong
>     		String encodedUrl = URLEncoder.encode(url, "UTF-8");
>     		System.err.println("URL after encoding: " + encodedUrl); // Output plus+%2Bwrong <- This is right
>     		// In Route it calls the URL http4://www.google.de/webhp?q=plus++
>     		// and not http4://www.google.de/webhp?q=plus+%2bwrong
>     		from("timer://foo?fixedRate=true&period=10000")
>     			.to("http4://www.google.de/webhp?q="+encodedUrl)
>     			.to("activemq:testPlus");
>   	}
> }
> {code}
> To see the wrong Url, put the Log Level to INFO



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)