Details
-
Type:
Bug
-
Status: Resolved
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 2.14.3, 2.15.3
-
Fix Version/s: 2.16.0
-
Component/s: camel-http, camel-http4, camel-netty4-http
-
Labels:None
-
Estimated Complexity:Unknown
Description
.setHeader(Exchange.HTTP_PATH, constant("/my/path")) .to("http4://myhost:80?abc=123")
leads to Camel requesting the following URL:
http://myhost:80?abc=123/my/path
instead of:
http://myhost:80/my/path?abc=123