Raúl Kripalani created CAMEL-9104:
-------------------------------------
Summary: HttpHelper concats fixed endpoint URI query parameters
with CamelHttpHeader in wrong order
Key: CAMEL-9104
URL: https://issues.apache.org/jira/browse/CAMEL-9104
Project: Camel
Issue Type: Bug
Components: camel-http, camel-http4, camel-netty4-http
Affects Versions: 2.15.3, 2.14.3
Reporter: Raúl Kripalani
Assignee: Raúl Kripalani
{code}
.setHeader(Exchange.HTTP_PATH, constant("/my/path"))
.to("http4://myhost:80?abc=123")
{code}
leads to Camel requesting the following URL:
{code}
http://myhost:80?abc=123/my/path
{code}
instead of:
{code}
http://myhost:80/my/path?abc=123
{code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)