From: Dave B. <bla...@us...> - 2011-03-11 13:46:44
|
Update of /cvsroot/sblim/jsr48-client In directory vz-cvs-3.sog:/tmp/cvs-serv30682 Modified Files: NEWS sblim-cim-client2.properties Log Message: 3185763 - Reliable indication support - Phase 1 Index: NEWS =================================================================== RCS file: /cvsroot/sblim/jsr48-client/NEWS,v retrieving revision 1.209 retrieving revision 1.210 diff -u -d -r1.209 -r1.210 --- NEWS 11 Mar 2011 13:08:17 -0000 1.209 +++ NEWS 11 Mar 2011 13:46:42 -0000 1.210 @@ -1,5 +1,6 @@ Changes in HEAD ================ +3185763 Reliable indication support - Phase 1 3190335 Erroneous use of SystemName property in samples 3186176 XML response for indication not traced 3185833 missing newline when logging request/response Index: sblim-cim-client2.properties =================================================================== RCS file: /cvsroot/sblim/jsr48-client/sblim-cim-client2.properties,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- sblim-cim-client2.properties 6 Dec 2010 19:43:02 -0000 1.16 +++ sblim-cim-client2.properties 11 Mar 2011 13:46:42 -0000 1.17 @@ -503,3 +503,43 @@ # Default: 30000 # #sblim.wbem.listenerHandlerMaxIdle=30000 + +# If set to true, reliable indication support is enabled and indications +# are processed accordingly. If set to false, reliable indication +# support is disabled and indications are passed directly to listener. +# +# Type: Boolean +# Recognition: On next creation of a WBEMListener +# Default: false +# +#sblim.wbem.listenerEnableReliableIndications=false + +# The default value to use for CIM_IndicationService DeliveryRetryAttempts +# property until it is received in an indication. See DSP1054 for details +# on reliable indications. +# +# Note: This property has no effect unless reliable indication support is +# enabled. See the sblim.wbem.listenerEnableReliableIndications property. +# +# Type: Long +# Unit: Count +# Recognition: On next creation of a WBEMListener +# Range: 0 .. Long.MAX_VALUE +# Default: 3 +# +#sblim.wbem.listenerDeliveryRetryAttempts=3 + +# The default value to use for CIM_IndicationService DeliveryRetryInterval +# property until it is received in an indication. See DSP1054 for details +# on reliable indications. +# +# Note: This property has no effect unless reliable indication support is +# enabled. See the sblim.wbem.listenerEnableReliableIndications property. +# +# Type: Long +# Unit: Seconds +# Recognition: On next creation of a WBEMListener +# Range: 0 .. Long.MAX_VALUE +# Default: 20 +# +#sblim.wbem.listenerDeliveryRetryInterval=20 |