[
https://issues.apache.org/activemq/browse/CAMEL-2559?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Claus Ibsen resolved CAMEL-2559.
--------------------------------
Resolution: Fixed
trunk: 925759.
Committed patch. 100% test with entire Camel.
> HttpComponent only checks the registry for an HttpClientConfigurer,
> setHttpClientConfigurer no longer works.
> ------------------------------------------------------------------------------------------------------------
>
> Key: CAMEL-2559
> URL: https://issues.apache.org/activemq/browse/CAMEL-2559
> Project: Apache Camel
> Issue Type: Bug
> Components: camel-http
> Affects Versions: 2.2.0
> Reporter: Stan Lewis
> Assignee: Stan Lewis
> Fix For: 2.3.0
>
> Attachments: CAMEL-2559.patch
>
>
> Basically you can't currently do this:
> {code}
> public void configure() {
> ProxyHttpClientConfigurer configurer = new
> ProxyHttpClientConfigurer(
> "proxyhost",
> 80,
> "user",
> "password",
> null,
> null);
> getContext().getComponent("http",
> HttpComponent.class).setHttpClientConfigurer(configurer);
> from("direct:start")
> .to("http://www.google.com/search");
> }
> {code}
> HttpComponent only looks in the registry for an HttpClientConfigurer.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.