Update of /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv24389/src/org/sblim/cimclient
Modified Files:
WBEMConfigurationProperties.java
Log Message:
2151 gzip compression not supported
Index: WBEMConfigurationProperties.java
===================================================================
RCS file: /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient/WBEMConfigurationProperties.java,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -d -r1.56 -r1.57
--- WBEMConfigurationProperties.java 20 Aug 2013 12:10:53 -0000 1.56
+++ WBEMConfigurationProperties.java 12 Sep 2013 13:14:28 -0000 1.57
@@ -49,6 +49,7 @@
* 2642 2013-05-21 blaschke-oss Seperate properties needed for cim client and listener to filter out ciphers
* 2647 2013-07-01 blaschke-oss Add two ssl protocol properties for http server and client
* 2654 2013-07-29 blaschke-oss Check jcc idle time with CIMOM keepalive timeout to avoid EOF
+ * 2151 2013-08-20 blaschke-oss gzip compression not supported
*/
package org.sblim.cimclient;
@@ -1080,4 +1081,22 @@
* </pre>
*/
public static final String SYNCHRONIZE_NUMERIC_KEY_DATA_TYPES = "sblim.wbem.synchronizeNumericKeyDataTypes";
+
+ /**
+ * <pre>
+ * If set to true, gzip encoding is enabled. If set to false, gzip encoding
+ * is not enabled. When enabled, outgoing requests include the HTTP header
+ * "Accept-Encoding: gzip" to indicate to the CIMOM that the client handles
+ * message bodies compressed with gzip. If the incoming response includes
+ * "Content-Encoding: gzip" the message body will be decompressed with gzip
+ * before being processed.
+ *
+ * Note: This property does not affect indications or outgoing requests.
+ *
+ * Type: Boolean
+ * Recognition: Anytime
+ * Default: false
+ * </pre>
+ */
+ public static final String ENABLE_GZIP_ENCODING = "sblim.wbem.enableGzipEncoding";
}
|