Yes I did set up http conduit for it. It's simliar to my first client setup.

        HPRetrieverWS ss = new HPRetrieverWS (); 
        HPRetrieverWSSoap hrPort = ss.getHPRetrieverWS WSSoap();   

        org.apache.cxf.endpoint.Client client = ClientProxy.getClient(hrPort
; 
        HTTPConduit httpConduit = (HTTPConduit) client.getConduit();   
        //httpConduit.getClient().setAllowChunking(false); 
        
        TLSClientParameters tlsParams = new TLSClientParameters(); 
        tlsParams.setSecureSocketProtocol("SSL"); 
        //tlsParams.getCipherSuites().add("SSL_RSA_WITH_3DES_EDE_CBC_SHA"); 
        //tlsParams.getCipherSuites().add("SSL_RSA_WITH_RC4_128_MD5"); 
        httpConduit.setTlsClientParameters(tlsParams); 

:-(


What's your 2nd CXF Client 's configuration?
Did you set the Client Parameters for it ?
Here is one http conduit per client in CXF.

Willem


-- 
View this message in context: 
http://www.nabble.com/Illegal-Protocol-https-for-HTTP-URLConnection-Factory-tp15798054p15804762.html
Sent from the cxf-user mailing list archive at Nabble.com.

Reply via email to