DOM updating list values in an instance

Hi Jeroen, Jens answered the first question. But regarding the second issue, GetFieldValue is an extension method which is located in the Skyline.DataMiner.Net.Sections namespace, make sure you include it. GetListFieldValue …

DOM updating list values in an instance

Hi Jeroen, Your first filter returns null because you’re using the section definition GUID (variable multiviewerSectionDefinition) in a DOM definition exposer. I guess that you’ll have a better result if …

How to create a SNMP v3 simulaton

Hi Jason, I performed a quick test and I was able to create a SNMPv3 simulation. Tested using the Skyline Simulator Tool (v2.0.0.2) Do you see any error when executing …

Fastest way to copy an DOM Instance

Hi Gerwin, Below example will get you started var instances = domHelper.DomInstances.Read(DomInstanceExposers.Id.Equal(IdOfInstanceToCopy)); domHelper.StitchDomInstances(instances); var instance = instances.First(); instance.ID = new DomInstanceId(Guid.NewGuid()); domHelper.DomInstances.Create(instance);

IDP – download package

Hi Thomas, As an update to this, I would like to inform you that as of now IDP is available for download on our DataMiner Software downloads page As of …

Dashboards – decode SRT stream with web-component

This won’t be easy because SRT (Secure Reliable Transport) sends data over UDP, which web browsers for security reasons don’t support. Web apps can only send/receive data over HTTP(S). So …

DataMiner.lic checksum and datetime stamp

Hi Jeff, DataMiner will never write to the license file dataminer.lic. The software will only read out the file. This means that the MD5 checksum and last modified timestamp will …