I use Apache http client 4.1 and always close the response InputStream (e.g. by calling EntityUtils.consume(response.getEntity)) after the HttpGet execution.
Now I wonder whether the connection is properly released if the HttpGet execution throws an exception. Should I release the connection explicitly in this case?