From: George v. <geo...@gm...> - 2014-06-16 05:36:26
|
Hi, Earlier I implemented an provider and also I had implemented indication interfaces int this provider. For implementing it, I have been referring the source code of sblim-cmpi-base source code. I copied here the sample mof file, // =================================================================== // GK_Test // =================================================================== [ Description("Class representing GK_Test"), Provider("cmpi:cmpiGK_Test") ] class GK_Test: CIM_LogicalElement { [Key, Description("This property is used to read the unique key id")] string InstanceID; boolean PowerEnabled; boolean UserEnabled; }; // =================================================================== // GK_TestIndication // =================================================================== [ Indication, Description ("Metric Process Indication"), Provider("cmpi:cmpiGK_Test") ] class GK_TestIndication : CIM_InstModification { boolean PowerEnabled; boolean UserEnabled; }; I have following doubts, if you know about it, please help me. 1. In sblim base server, operating system code handled only one property named "OperationalStatus". if have multiple property in mof file, how to know which property is subscribed from clients?. for identifying iy, which indication interface api is used?. 2. I don't know the substription requests using wsman/wbem clients. I am waiting for your reply. Regards, George |