Update of /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient
In directory vz-cvs-3.sog:/tmp/cvs-serv29888/src/org/sblim/cimclient
Modified Files:
WBEMConfigurationProperties.java
Log Message:
3277928 - CIM-XML tracing cannot be enabled in the field
Index: WBEMConfigurationProperties.java
===================================================================
RCS file: /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient/WBEMConfigurationProperties.java,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -d -r1.36 -r1.37
--- WBEMConfigurationProperties.java 14 Mar 2011 14:04:20 -0000 1.36
+++ WBEMConfigurationProperties.java 10 May 2011 20:13:07 -0000 1.37
@@ -30,6 +30,7 @@
* 3185763 2011-02-25 blaschke-oss Reliable indication support - Phase 1
* 3195069 2011-02-28 blaschke-oss Need support to disable SSL Handshake
* 3197423 2011-03-02 blaschke-oss Server authentication with PegasusLocalAuthInfo failing
+ * 3277928 2011-04-06 blaschke-oss CIM-XML tracing cannot be enabled in the field
*/
package org.sblim.cimclient;
@@ -491,6 +492,31 @@
public static final String CIMXML_TRACING = "sblim.wbem.cimxmlTracing";
/**
+ * Specifies the stream to use for tracing CIM-XML communication in the
+ * event the application does not set one via the LogAndTraceManager class.
+ * This stream can either be standard output (System.out), standard error
+ * output (System.err) or a filename to be opened by the client.
+ *
+ * Note: This property has no effect unless sblim.wbem.cimxmlTracing is set
+ * to true.
+ *
+ * Note: This property has no effect if the application already set the
+ * stream prior to client initialization. If the application sets the stream
+ * after client initialization, the stream specified by this property is
+ * overridden.
+ *
+ * Note: If a filename is specified, it is opened and all CIM-XML
+ * communication is written to it - no checks are made for an existing file
+ * or for filling up the disk. USE WITH CAUTION.
+ *
+ * Type: <code>String</code><br />
+ * Recognition: <code>Startup</code><br />
+ * Range: <code>System.out, System.err, filename</code><br />
+ * Default: <code>none</code><br />
+ */
+ public static final String CIMXML_TRACE_STREAM = "sblim.wbem.cimxmlTraceStream";
+
+ /**
* <pre>
* Tells the XML builder how to sign embedded objects. This is necessary due to
* the non-consequent handling of embedded objects on different CIMOMs.
|