Hi folks,
I have a question. I created a node for NCM via SWIS and C# code but any information doesn't shown on Node Details section. Is there any requirement fields/properties to fill (like Caption, Location etc..) when creating a node via SWIS?
My code block is below:
Dictionary<string, string> _dic = new Dictionary<string, string>();
_dic.Add("ObjectSubType", "SNMP");
_dic.Add("SNMPVersion", "2");
_dic.Add("IPAddress", "192.168.1.254");
_dic.Add("Caption", "");
_dic.Add("SysName", "");
_dic.Add("Contact", "");
_dic.Add("Location", "");
_dic.Add("PercentMemoryUsed", "-2");
_dic.Add("MemoryUsed", "-2");
_dic.Add("CPULoad", "-2");
_dic.Add("Community", "<community>");
_dic.Add("EngineID", "2");
_dic.Add("DynamicIP", "false");
_dic.Add("MachineType", "");
_dic.Add("Allow64BitCounters", "true");
string uri = npc.AddNode(pbn);