You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2012/08/09 22:35:58 UTC

svn commit: r1371465 - /cxf/branches/2.4.x-fixes/rt/transports/http/src/main/java/org/apache/cxf/transport/http/HTTPConduit.java

Author: dkulp
Date: Thu Aug  9 20:35:58 2012
New Revision: 1371465

URL: http://svn.apache.org/viewvc?rev=1371465&view=rev
Log:
Merged revisions 1371436 via  git cherry-pick from
https://svn.apache.org/repos/asf/cxf/branches/2.5.x-fixes

........
  r1371436 | dkulp | 2012-08-09 16:23:49 -0400 (Thu, 09 Aug 2012) | 18 lines

  Merged revisions 1371405 via  git cherry-pick from
  https://svn.apache.org/repos/asf/cxf/branches/2.6.x-fixes

  ........
    r1371405 | dkulp | 2012-08-09 15:25:08 -0400 (Thu, 09 Aug 2012) | 10 lines

    Merged revisions 1368470 via  git cherry-pick from
    https://svn.apache.org/repos/asf/cxf/trunk

    ........
      r1368470 | gmazza | 2012-08-02 09:37:18 -0400 (Thu, 02 Aug 2012) | 2 lines

      Clarified error message in case of CN mismatches between server cert and HTTPS URL address

    ........

  ........

........

Modified:
    cxf/branches/2.4.x-fixes/rt/transports/http/src/main/java/org/apache/cxf/transport/http/HTTPConduit.java

Modified: cxf/branches/2.4.x-fixes/rt/transports/http/src/main/java/org/apache/cxf/transport/http/HTTPConduit.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.4.x-fixes/rt/transports/http/src/main/java/org/apache/cxf/transport/http/HTTPConduit.java?rev=1371465&r1=1371464&r2=1371465&view=diff
==============================================================================
--- cxf/branches/2.4.x-fixes/rt/transports/http/src/main/java/org/apache/cxf/transport/http/HTTPConduit.java (original)
+++ cxf/branches/2.4.x-fixes/rt/transports/http/src/main/java/org/apache/cxf/transport/http/HTTPConduit.java Thu Aug  9 20:35:58 2012
@@ -1332,9 +1332,9 @@ public class HTTPConduit 
             } catch (IOException e) {
                 if (e.getMessage() != null && e.getMessage().contains("HTTPS hostname wrong:")) {
                     throw new IOException("The https URL hostname does not match the " 
-                        + "Common Name (CN) on the server certificate.  To disable this check " 
-                        + "(NOT recommended for production) set the CXF client TLS configuration " 
-                        + "property \"disableCNCheck\" to true.");
+                        + "Common Name (CN) on the server certificate in the client's truststore.  " 
+                        + "To disable this check (NOT recommended for production) set the CXF " 
+                        + "client TLS configuration property \"disableCNCheck\" to true.");
                 } else {
                     throw e;
                 }