Unable to use the ResourceManagerHelper

If you use one of the latest versions of the SRM packages you can use this: SrmManagers.ResourceManager.GetEligibleResources(). You also have the ProfileManager and others on the SrmManagers.

Unable to use the ResourceManagerHelper

Hi Pieter-Jan, You need to call the RequestResponseEvent as part of the initiation of the helper as shown below for in an Automation Script ResourceManagerHelper RmHelper = new ResourceManagerHelper(); RmHelper.RequestResponseEvent …

Unable to use the ResourceManagerHelper

The SRM (and other) helpers require a callback to DataMiner. This can be added like this: helper = new ResourceManagerHelper(); helper.RequestResponseEvent += (s, e) => e.responseMessage = engine.SendSLNetSingleResponseMessage(e.requestMessage);

SNMP Tables with Retrieved Columns

Retrieved columns are only required in SNMP tables when some of the data polled via SNMP needs to be parsed or processed in a QAction. As long as this is …

New driver after firmware update?

Some more technical background information: We will always try and support firmware changes in the existing range(s) of a protocol. This off course depends on the nature of the changes, …

New driver after firmware update?

Please refer to the FAQ section: Do I have to buy a new driver/connector license in case the device vendor releases a firmware upgrade?

Receiving malformed packets from a SNMP device

Like Joey mentions, the value is not a valid integer because of length zero. There are a few other things that I’m wondering: -How is the parameter requested via the …

What is an unlinked resource in SRM?

Unlinked resources are SRM resources that provide specific capacities and capabilities, but are not yet linked to existing instances of the device or product. Typically, the actual instances only get …

Receiving malformed packets from a SNMP device

Looks like the value for that OID is not a valid integer (empty) and DataMiner doesn’t (yet) handle this error. Have you tried polling using getnext to see if polling …