From c82115dd8c292c0d844c9fade57ee2a58264e90d Mon Sep 17 00:00:00 2001 From: Oleg Kalnichevski Date: Mon, 14 May 2007 08:42:09 +0000 Subject: [PATCH] Added default host and default proxy parameters HTTP client can fall back onto when determining request route git-svn-id: https://svn.apache.org/repos/asf/jakarta/httpcomponents/httpclient/trunk@537750 13f79535-47bb-0310-9956-ffa450edef68 --- .../http/client/params/HttpClientParams.java | 42 +++++++++++++++---- .../http/impl/client/DefaultHttpClient.java | 13 ++++-- 2 files changed, 43 insertions(+), 12 deletions(-) diff --git a/src/java/org/apache/http/client/params/HttpClientParams.java b/src/java/org/apache/http/client/params/HttpClientParams.java index 9dbf0cc7a..bc4c90ae5 100644 --- a/src/java/org/apache/http/client/params/HttpClientParams.java +++ b/src/java/org/apache/http/client/params/HttpClientParams.java @@ -61,14 +61,6 @@ public class HttpClientParams { */ public static final String CONNECTION_MANAGER_FACTORY = "http.connection-manager.factory"; - /** - * Defines whether authentication should be attempted preemptively. - *

- * This parameter expects a value of type {@link Boolean}. - *

- */ - public static final String PREEMPTIVE_AUTHENTICATION = "http.authentication.preemptive"; - /** * Defines whether redirects should be handled automatically *

@@ -104,6 +96,22 @@ public class HttpClientParams { */ public static final String ALLOW_CIRCULAR_REDIRECTS = "http.protocol.allow-circular-redirects"; + /** + * Defines whether authentication should be handled automatically. + *

+ * This parameter expects a value of type {@link Boolean}. + *

+ */ + public static final String HANDLE_AUTHENTICATION = "http.protocol.handle-authentication"; + + /** + * Defines whether authentication should be attempted preemptively. + *

+ * This parameter expects a value of type {@link Boolean}. + *

+ */ + public static final String PREEMPTIVE_AUTHENTICATION = "http.protocol.authentication-preemptive"; + /** * Defines the name of the cookie specification to be used for HTTP state management. *

@@ -121,6 +129,24 @@ public class HttpClientParams { */ public static final String DEFAULT_HEADERS = "http.default-headers"; + /** + * Defines the default host. The default value will be used if the target host is + * not explicitly specified in the request URI. + *

+ * This parameter expects a value of type {@link HttpHost}. + *

+ */ + public static final String DEFAULT_HOST = "http.default-host"; + + /** + * Defines the default proxy. The default value will be used if the proxy + * information is not explicitly specified in the request route. + *

+ * This parameter expects a value of type {@link HttpHost}. + *

+ */ + public static final String DEFAULT_PROXY = "http.default-proxy"; + private HttpClientParams() { super(); } diff --git a/src/java/org/apache/http/impl/client/DefaultHttpClient.java b/src/java/org/apache/http/impl/client/DefaultHttpClient.java index 4e6071d5e..1825d7089 100644 --- a/src/java/org/apache/http/impl/client/DefaultHttpClient.java +++ b/src/java/org/apache/http/impl/client/DefaultHttpClient.java @@ -244,18 +244,23 @@ public class DefaultHttpClient extends AbstractHttpClient { HttpContext context) throws HttpException { - //@@@ refer to a default HostConfiguration? - //@@@ allow null target if there is a default route with a target? if (target == null) { - throw new IllegalArgumentException + target = (HttpHost) request.getParams().getParameter( + HttpClientParams.DEFAULT_HOST); + } + if (target == null) { + throw new IllegalStateException ("Target host must not be null."); } + HttpHost proxy = (HttpHost) request.getParams().getParameter( + HttpClientParams.DEFAULT_PROXY); + Scheme schm = getConnectionManager().getSchemeRegistry(). getScheme(target.getSchemeName()); // as it is typically used for TLS/SSL, we assume that // a layered scheme implies a secure connection - HttpRoute route = new HttpRoute(target, null, schm.isLayered()); + HttpRoute route = new HttpRoute(target, null, proxy, schm.isLayered()); return new RoutedRequest.Impl(request, route); }