Saravanakumar Selvaraj created CAMEL-11548:
----------------------------------------------
Summary: camel-undertow consumer shall use InOut ExchangePattern
Key: CAMEL-11548
URL: https://issues.apache.org/jira/browse/CAMEL-11548
Project: Camel
Issue Type: Bug
Components: camel-undertow
Affects Versions: 2.19.1
Reporter: Saravanakumar Selvaraj
Priority: Minor
Camel-undertow is the odd one among camel-jetty, camel-restlet and netty4-http.
It's consumer does not use InOut ExchangePattern and hence Request Reply EIP is
not possible on asynchronous endpoints.
For example, below consumer returns "No response available" instead of "Camel
rocks!!"
{code}
from("undertow:http://localhost:8081/api").to("seda:foo");
from("seda:foo").process(exchange -> {
exchange.getIn().setBody("Camel rocks!!");
});
{code}
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)