Skip to content

ConsumerForwardProxy

johnny.bufu edited this page Jun 4, 2015 · 1 revision

Consumer Forward Proxy

If your Relying Party / consumer site needs to access the internet through a proxy, the following proxy configuration is necessary, before the ConsumerManager is instantiated:

// --- Forward proxy setup (only if needed) ---
ProxyProperties proxyProps = new ProxyProperties();
proxyProps.setProxyName("proxy.example.com");
proxyProps.setProxyPort(8080);
HttpClientFactory.setProxyProperties(proxyProps);
Clone this wiki locally