mirror of
https://github.com/moparisthebest/davmail
synced 2024-12-13 19:22:22 -05:00
Switch to MultiThreadedHttpConnectionManager for http connection management
git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@218 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
parent
e0d46770f7
commit
146c29c136
@ -373,19 +373,6 @@ public class ExchangeSession {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Close session.
|
||||
* This will only close http client, not the actual Exchange session
|
||||
*/
|
||||
void close() {
|
||||
try {
|
||||
wdr.close();
|
||||
LOGGER.debug("Session " + this + " closed");
|
||||
} catch (IOException e) {
|
||||
LOGGER.warn("Exception closing session", e);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Create message in current folder
|
||||
*
|
||||
|
@ -2,13 +2,7 @@ package davmail.http;
|
||||
|
||||
import davmail.Settings;
|
||||
import davmail.tray.DavGatewayTray;
|
||||
import org.apache.commons.httpclient.Header;
|
||||
import org.apache.commons.httpclient.HttpClient;
|
||||
import org.apache.commons.httpclient.HttpException;
|
||||
import org.apache.commons.httpclient.HttpMethod;
|
||||
import org.apache.commons.httpclient.HttpStatus;
|
||||
import org.apache.commons.httpclient.NTCredentials;
|
||||
import org.apache.commons.httpclient.UsernamePasswordCredentials;
|
||||
import org.apache.commons.httpclient.*;
|
||||
import org.apache.commons.httpclient.methods.GetMethod;
|
||||
|
||||
import java.io.IOException;
|
||||
@ -17,7 +11,10 @@ import java.io.IOException;
|
||||
* Create HttpClient instance according to DavGateway Settings
|
||||
*/
|
||||
public class DavGatewayHttpClientFacade {
|
||||
static final MultiThreadedHttpConnectionManager multiThreadedHttpConnectionManager = new MultiThreadedHttpConnectionManager();
|
||||
|
||||
static {
|
||||
multiThreadedHttpConnectionManager.setMaxConnectionsPerHost(10);
|
||||
// force XML response with Internet Explorer header
|
||||
System.getProperties().setProperty("httpclient.useragent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)");
|
||||
}
|
||||
@ -43,6 +40,7 @@ public class DavGatewayHttpClientFacade {
|
||||
* @param httpClient current Http client
|
||||
*/
|
||||
public static void configureClient(HttpClient httpClient) {
|
||||
httpClient.setHttpConnectionManager(multiThreadedHttpConnectionManager);
|
||||
|
||||
// do not send basic auth automatically
|
||||
httpClient.getState().setAuthenticationPreemptive(false);
|
||||
|
Loading…
Reference in New Issue
Block a user