I found this sequence to set up basic authentication here:

HttpClient client = new HttpClient();

client.getState().setCredentials(
   new AuthScope("www.domain.com", 443, "realm"),
   new UsernamePasswordCredentials("username", "password") );

How can this be achived by using spring configuration? The reason behind is, I need to enable authentication for a spring-integration HttpOutboundGateway. The only piece of information I found on this topic is this

  • The question is: How to do the spring-configuration?
  • And second how can I inject the HttpClient into spring-integration?
link|improve this question

HttpClient 3? Why not upgrade to HttpClient 4? – The Elite Gentleman Nov 16 '10 at 14:29
I decided to use spring-integration 1.0.3 since 2.x wasn't released. – stacker Nov 16 '10 at 15:14
feedback

2 Answers

up vote 2 down vote accepted

Well, it could be something like that: (note, nothing is tested - thats just a series of random thoughts :) )

<bean id="httpOutbound" class="org.springframework.integration.http.HttpOutboundEndpoint" >
    <property name="requestExecutor" ref="executor" />
</bean>

<bean id="executor" class="org.springframework.integration.http.CommonsHttpRequestExecutor">
    <property name="httpClient">
        <bean factory-bean="clientFactory" factory-method="getHttpClient">
    </property>
</bean>

<bean id="clientFactory" class="bla.bla.bla.HttpClientFactoryBean">
    <constructor-arg ref="httpClient" />
    <constructor-arg ref="credentials" />
</bean>

<bean id="httpClient" class="org.apache.commons.httpclient.HttpClient">
    <constructor-arg ref="httpClientParams" />
</bean>

<bean id="httpClientParams" class="org.apache.commons.httpclient.params.HttpClientParams">
    <property name="authenticationPreemptive" value="true" />
    <property name="connectionManagerClass" value="org.apache.commons.httpclient.MultiThreadedHttpConnectionManager" />
</bean>

<bean id="credentials" class="org.apache.commons.httpclient.UsernamePasswordCredentials">
    <constructor-arg value="user" />
    <constructor-arg value="password" />
</bean>


public class HttpClientFactoryBean{
    private HttpClient httpClient;
    public HttpClientFactoryBean(HttpClient httpClient, Credentials credentials){
        this.httpClient = httpClient;
        httpClient.getState().setCredentials(AuthScope.ANY, credentials);
    }

    public HttpClient getHttpClient(){
        return httpClient;
    }
}
link|improve this answer
Thanks very nice draft – stacker Nov 16 '10 at 16:25
feedback

Create a FactoryBean class of your own which returns HttpClient instances with the configuration you like.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.