diff --git a/docs/src/reference/docbook/http.xml b/docs/src/reference/docbook/http.xml index fc5cec6acf..f0bd65e5fc 100644 --- a/docs/src/reference/docbook/http.xml +++ b/docs/src/reference/docbook/http.xml @@ -180,8 +180,10 @@ In the case of the Outbound Gateway, the reply message produced by the gateway w HTTP Proxy configuration - If you are behind the proxy and need to configure proxy settings for HTTP outbound adapters/ - gateways you can apply several approaches. + If you are behind a proxy and need to configure proxy settings for HTTP outbound adapters and/or + gateways, you can apply one of two approaches. In most cases, you can rely on the standard Java + System Properties that control the proxy settings. Otherwise, you can explicitly configure a + Spring bean for the HTTP client request factory instance. @@ -189,7 +191,7 @@ In the case of the Outbound Gateway, the reply message produced by the gateway w - There are 3 properties you can set to specify the proxy that will be used by the http protocol handler: + There are 3 System Properties you can set to configure the proxy settings that will be used by the HTTP protocol handler: http.proxyHost - the host name of the proxy server. @@ -223,7 +225,8 @@ In the case of the Outbound Gateway, the reply message produced by the gateway w Spring's SimpleClientHttpRequestFactory - You can also use SimpleClientHttpRequestFactory which comes with Spring and configured it as such: + If for any reason, you need more explicit control over the proxy configuration, you can use Spring's + SimpleClientHttpRequestFactory and configure its 'proxy' property as such: @@ -241,9 +244,7 @@ In the case of the Outbound Gateway, the reply message produced by the gateway w ]]> - - We may provide a namespace-based support in the future to simplify configuration - +