Repository: cxf
Updated Branches:
  refs/heads/3.0.x-fixes c9e31ce9c -> 322a0b36c


CXF-7233 - Create workaround for JDK HostnameVerifier issue


Project: http://git-wip-us.apache.org/repos/asf/cxf/repo
Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/322a0b36
Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/322a0b36
Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/322a0b36

Branch: refs/heads/3.0.x-fixes
Commit: 322a0b36c26cc6f996f446d4494ebd0674b1fee0
Parents: c9e31ce
Author: Colm O hEigeartaigh <cohei...@apache.org>
Authored: Thu Jan 26 16:53:17 2017 +0000
Committer: Colm O hEigeartaigh <cohei...@apache.org>
Committed: Thu Jan 26 20:46:33 2017 +0000

----------------------------------------------------------------------
 .../org/apache/cxf/transport/https/SSLSocketFactoryWrapper.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf/blob/322a0b36/rt/transports/http/src/main/java/org/apache/cxf/transport/https/SSLSocketFactoryWrapper.java
----------------------------------------------------------------------
diff --git 
a/rt/transports/http/src/main/java/org/apache/cxf/transport/https/SSLSocketFactoryWrapper.java
 
b/rt/transports/http/src/main/java/org/apache/cxf/transport/https/SSLSocketFactoryWrapper.java
index 4e635f0..1f5d583 100644
--- 
a/rt/transports/http/src/main/java/org/apache/cxf/transport/https/SSLSocketFactoryWrapper.java
+++ 
b/rt/transports/http/src/main/java/org/apache/cxf/transport/https/SSLSocketFactoryWrapper.java
@@ -59,12 +59,12 @@ class SSLSocketFactoryWrapper extends SSLSocketFactory {
     public String[] getSupportedCipherSuites() {
         return sslSocketFactory.getSupportedCipherSuites(); 
     }
-    
+    /*
     public Socket createSocket() throws IOException {
         return enableCipherSuites(sslSocketFactory.createSocket(), 
                                   new Object[] {"unconnected", "unconnected"});
     }
-        
+    */  
     public Socket createSocket(Socket s, String host, int port, boolean 
autoClose)
         throws IOException, UnknownHostException  {
         return enableCipherSuites(sslSocketFactory.createSocket(s, host, port, 
autoClose),

Reply via email to