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 2018/09/04 15:15:00 UTC

[jira] [Updated] (CAMEL-12764) camel-http4: basic auth no longer working when used in combination with a dynamic to

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

Claus Ibsen updated CAMEL-12764:
--------------------------------
    Fix Version/s: 2.23.0
                   2.22.2

> camel-http4: basic auth no longer working when used in combination with a dynamic to
> ------------------------------------------------------------------------------------
>
>                 Key: CAMEL-12764
>                 URL: https://issues.apache.org/jira/browse/CAMEL-12764
>             Project: Camel
>          Issue Type: Bug
>          Components: camel-http4
>    Affects Versions: 2.22.0
>            Reporter: Pascal Schumacher
>            Priority: Major
>              Labels: regresion
>             Fix For: 2.22.2, 2.23.0
>
>
> After upgrading a Spring Boot Project from Camel 2.21.1 to Camel 2.22.0 basic authentication of the http4 component stopped working when it is used in combination with a dynamic to.
> My (slightly simplified) route:
> {code:java}
> from(inUri)
>     .setHeader(Exchange.CONTENT_TYPE, constant(MediaType.APPLICATION_JSON_VALUE))
>     .setBody(constant("{\"action\":\"signal\"}"))
>     .setHeader(Exchange.HTTP_METHOD, constant(HttpMethods.PUT))
>     .toD("http4://{{username}}:{{password}}@{{host}}:{{port}}/executions/${exchangeProperty.my_id}");
> {code}
> When I change the route and remove the dynamic to everything works fine again:
> {code:java}
> from(inUri)
>     .setHeader(Exchange.CONTENT_TYPE, constant(MediaType.APPLICATION_JSON_VALUE))
>     .setBody(constant("{\"action\":\"signal\"}"))
>     .setHeader(Exchange.HTTP_METHOD, constant(HttpMethods.PUT))
>     .setHeader(Exchange.HTTP_PATH, exchangeProperty("my_id"))
>     .to("http4://{{username}}:{{password}}@{{host}}:{{port}}/executions/");
> {code}
> Maybe this regression was caused by CAMEL-12462?



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)