From: Dave B. <bla...@us...> - 2011-03-14 12:52:54
|
Update of /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient In directory vz-cvs-3.sog:/tmp/cvs-serv27940/src/org/sblim/cimclient Modified Files: WBEMConfigurationProperties.java Log Message: 3195069 - Need support to disable SSL Handshake Index: WBEMConfigurationProperties.java =================================================================== RCS file: /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient/WBEMConfigurationProperties.java,v retrieving revision 1.33 retrieving revision 1.34 diff -u -d -r1.33 -r1.34 --- WBEMConfigurationProperties.java 11 Mar 2011 13:46:42 -0000 1.33 +++ WBEMConfigurationProperties.java 14 Mar 2011 12:52:52 -0000 1.34 @@ -28,6 +28,7 @@ * 3046073 2010-09-07 blaschke-oss Performance hit due to socket conn. creation with timeout * 3111718 2010-11-18 blaschke-oss org.sblim.cimclient SSL Code is using the wrong SSL Property * 3185763 2011-02-25 blaschke-oss Reliable indication support - Phase 1 + * 3195069 2011-02-28 blaschke-oss Need support to disable SSL Handshake */ package org.sblim.cimclient; @@ -539,11 +540,27 @@ /** * <pre> + * If set to true, SSL handshakes are performed after an SSL socket is created by the + * socket factory. If set to false, handshakes are not performed, which is useful if + * if the handshake has already taken place. + * + * Type: Boolean + * Recognition: Anytime + * Default: true + * </pre> + */ + public static final String PERFORM_SSL_HANDSHAKE = "sblim.wbem.performSslHandshake"; + + /** + * <pre> * If set to false, SSL handshakes are not synchronized. If set to true, SSL handshakes * are synchronized as a workaround for an IBMJSSE1 problem with thread-safe handshakes. * + * Note: This property has no affect unless sblim.wbem.performSslHandshake is set to + * true. + * * Type: Boolean - * Recognition: On next HTTP client + * Recognition: Anytime * Default: false * </pre> */ @@ -558,7 +575,7 @@ * process in Java 5+ (see Sun bug 5092063). * * Type: Boolean - * Recognition: On next HTTP client + * Recognition: Anytime * Default: true * </pre> */ |