} else {
LOGGER.error("The given settings for the HttpClient connection pool will be ignored: Unsupported implementation");
}
// set HttpClient global setting
HttpConnectionParamBean httpConnectionParamBean = new HttpConnectionParamBean(params);
if(getSocketTimeOut() != null) {
httpConnectionParamBean.setSoTimeout(getSocketTimeOut());
}
// set HttpClient global connection timeout
if(getConnectionTimeOut() != null) {
httpConnectionParamBean.setConnectionTimeout(getConnectionTimeOut());
}
// set HttpClient Proxy settings
if(getForwardProxy() != null) {
setForwardProxy(httpClient, params);