You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "ASF GitHub Bot (Jira)" <ji...@apache.org> on 2019/11/05 08:24:00 UTC

[jira] [Work logged] (CAMEL-14139) Camel Undertow does not provide an option to use the producer as the "Host" header when bridging two http endpoints

     [ https://issues.apache.org/jira/browse/CAMEL-14139?focusedWorklogId=338592&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-338592 ]

ASF GitHub Bot logged work on CAMEL-14139:
------------------------------------------

                Author: ASF GitHub Bot
            Created on: 05/Nov/19 08:23
            Start Date: 05/Nov/19 08:23
    Worklog Time Spent: 10m 
      Work Description: avi5kdonrh commented on pull request #3316: CAMEL-14139 Camel Undertow does not provide an option to use the prod…
URL: https://github.com/apache/camel/pull/3316
 
 
   …ucer as the Host header when bridging two http endpoints
 
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Issue Time Tracking
-------------------

            Worklog Id:     (was: 338592)
    Remaining Estimate: 0h
            Time Spent: 10m

> Camel Undertow does not provide an option to use the producer as the "Host" header when bridging two http endpoints
> -------------------------------------------------------------------------------------------------------------------
>
>                 Key: CAMEL-14139
>                 URL: https://issues.apache.org/jira/browse/CAMEL-14139
>             Project: Camel
>          Issue Type: Bug
>          Components: camel-undertow
>    Affects Versions: 3.0.0.RC3
>            Reporter: Avinash Dongre
>            Priority: Major
>          Time Spent: 10m
>  Remaining Estimate: 0h
>
> Camel undertow always propagates the same host header from source to target. There is no option to disable this.
> {code:xml}
> <route>
>             <from uri="undertow:http://localhost:8189"/>
>             <log message="Source ${in.headers.Host}" />
>             <to uri="undertow:http://localhost:8289"/>
>         </route>
>         <route>
>             <from uri="undertow:http://localhost:8289"/>
>             <log message="Target ${in.headers.Host}" />
>         </route>
> {code}
>  
>  Result:
> {code:xml}
> 2019-11-05 12:43:54.738  INFO 30967 --- [  XNIO-2 task-1] route1 :  Source localhost:8189
> 2019-11-05 12:43:54.789  INFO 30967 --- [  XNIO-3 task-1] route2 :  Target localhost:8189
> {code}
> Expected:
> {code:xml}
> 2019-11-05 12:43:54.738  INFO 30967 --- [  XNIO-2 task-1] route1 :  Source localhost:8189
> 2019-11-05 12:43:54.789  INFO 30967 --- [  XNIO-3 task-1] route2 :  Target localhost:8289
> {code}
> An option to disable the preservation of the original host is present in camel-http 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)