What's new? | Help | Directory | Sign in
Google
                
Search
for
Updated Jan 07, 2008 by Johnny.Bufu
ConsumerForwardProxy  
Forward-proxy configuration for consumer sites / Relying Parties

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);

Sign in to add a comment