I can add a bit more information:  This request works fine if we send it to
the proxy server over the http port instead of over the SSL port.  So I
think this must be a problem with our infrastructure and not with what we
are doing in the app.  Anybody disagree?

David



droytenberg wrote
> I've dug around on the web and haven't found an explanation of this
> precise scenario.
> 
> ...
> 
> Here is the configuration for the proxy server.  I've disabled chunking
> because this was one
> suggestion of how to resolve proxy connection issues, but it doesn't seem
> to make any difference:
> 
> 
> ....
>     HTTPConduit conduit = (HTTPConduit)cxfClient.getConduit(); 
>     
>     HTTPClientPolicy policy =  conduit.getClient();
>        // Set the proxy server ...
>     policy.setProxyServer("ip addresss for proxy server");
>     // ... and the proxy server port
>     policy.setProxyServerPort(9443);
>     policy.setProxyServerType(ProxyServerType.HTTP);
>     // Disable chunking.  
>     policy.setAllowChunking(false);
> ......
> 
> Does this mean there is something wrong with our infrastructure or is it
> possible that there is more configuration that we have to do
> programmatically?
> 
> We're stuck.  So any suggestions will be gratefully received.
> 
> David Roytenberg





--
View this message in context: 
http://cxf.547215.n5.nabble.com/Configuring-a-proxy-server-to-connect-over-https-tp5731511p5731670.html
Sent from the cxf-user mailing list archive at Nabble.com.

Reply via email to