Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Won't Fix
-
2.13.4, 2.15.0, 2.15.2
-
None
-
Moderate
Description
Hi,
When we pass HttpClientParams in EndPoint URI, to override HttpConnectionManager class, the HttpComponent is not considering the overridden parameter,
In org.apache.camel.component.http.HttpComponent, if there is no bean injection of httpConnectionManager class, by default a new instance of MultiThreadedHttpConnectionManager class is created.
In HttpComponent class, while constructing the HttpEndPoint, the same above HttpConnection Manager class is sent as reference.
In HttpEndPoint class, createHttpClient method, although all the Http client params are considered, HttpConnectionManager class sent by the HttpClient Params is not considered.
Please clarify or fix it.
HttpClient answer = new HttpClient(getClientParams()); // Line Number 110 answer.setHttpConnectionManager(httpConnectionManager); // Line Number 144