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?