/**
* default constructor
*/
public WebserviceRecommender() {
// Create an instance of HttpClient.
connectionManager = new IdleClosingConnectionManager();
client = new HttpClient(connectionManager);
// set default timeouts
final HttpConnectionManagerParams connectionParams = connectionManager.getParams();
connectionParams.setSoTimeout(SOCKET_TIMEOUT_MS);