Description
Right now setting http.proxyHost, http.proxyPort, etc. does not have any effect.
Looks like the following is the standard way of taking into account standard properties:
DefaultHttpClient httpclient = new DefaultHttpClient(); ProxySelectorRoutePlanner routePlanner = new ProxySelectorRoutePlanner( httpclient.getConnectionManager().getSchemeRegistry(), ProxySelector.getDefault()); httpclient.setRoutePlanner(routePlanner);