You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@camel.apache.org by "Claus Ibsen (JIRA)" <ji...@apache.org> on 2010/03/20 16:59:55 UTC

[jira] Reopened: (CAMEL-2559) HttpComponent only checks the registry for an HttpClientConfigurer, setHttpClientConfigurer no longer works.

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

Claus Ibsen reopened CAMEL-2559:
--------------------------------


This commit caused problems. 

The test {{JettyHttpBindingRefTest}} now fails

> 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
>
>
> 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.