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.

Reply via email to