-
I think there is one missing field in CIMDataType:
public static final CIMDataType CLASS_ARRAY_T = new CIMDataType(CIMDataType.CLASS, 0);
All of the other types (except INVALID, NULL, and REFERENCE) have a constant for an unbounded array type. I think there should probably be one for CLASS types too.
2009-09-30 04:07:03 UTC in Standards Based Linux Instrumentation
-
When you invoke the enumerateQualifierTypes method with a CIMObjectPath with a valid namespace and a null object name, an error is thrown by the client code. This operation shouldn't do any validation on the specified object name parameter because the CIM-XML method EnumerateQualifiers doesn't take a class name parameter.
There is a comment in CIMClientXML_HelperImpl.java which I think is...
2009-09-23 19:44:02 UTC in Standards Based Linux Instrumentation
-
This was opened in error - the TYPE attribute was added in the CIM-XML dtd version 2.2, while wbemcli is sending a request for DTDVERSION 2.0.
2009-08-06 18:27:26 UTC in Standards Based Linux Instrumentation
-
According to the CIM spec, KEYVALUE is allowed to have two attributes - 'VALUETYPE' and 'TYPE'. 'TYPE' is an implied attribute and is optional.
When wbemcli processes an enumerateInstanceNames request with the 'TYPE' attribute specified, it gives an error (and the TYPE attribute value looks truncated - it is 'boolean' in the XML):
*
* ./wbemcli: Parse Exception: Unknown attribute in list...
2009-08-06 18:17:13 UTC in Standards Based Linux Instrumentation
-
Looks better now - there is one additional file which wasn't fixed in the latest changes - utst/org/sblim/cimclient/unittest/wbem/data/EnumClasses.jar. I still see boolean constructors being used there, but it isn't a big deal since that is just test code.
2009-08-04 05:19:46 UTC in Standards Based Linux Instrumentation
-
The initial patch is incomplete - there are several other occurrences which weren't resolved. I have attached to this ticket a more complete patch which replaces all uses of the boolean constructor for jsr48-client on the Experimental branch.
2009-07-27 16:02:32 UTC in Standards Based Linux Instrumentation
-
There are several places in the sblim CIM client where the construct:
val = new Boolean(true|false)
is used. This code should be changed to use:
val = Boolean.valueOf(true|false);
This will preserve memory from allocating unneeded instances of Boolean objects.
2009-07-18 07:49:23 UTC in Standards Based Linux Instrumentation
-
The faststats project has not been actively developed or maintained in over 5 years and it can be removed from sourceforge.
2008-03-29 02:07:04 UTC in SourceForge.net
-
pkwarren committed patchset 191 of module faststats to the faststats CVS repository, changing 13 files.
2002-08-16 00:10:45 UTC in faststats
-
pkwarren committed patchset 190 of module faststats to the faststats CVS repository, changing 1 files.
2001-12-04 08:05:15 UTC in faststats