Unexpected HTML (Administrator) connection

The web APIs have indeed one persistent admin connection to check certain info (eg cloud connectivity status) and build up some globally available cache. This connection is created during initialization …

SRM – ResourceManagerTraceDataException

Hi Jeroen, The exception already tells you that was resource 3f1a2d52-2314-49a5-96e8-baba460e61f2 that caused the error. After that you should open the booking log file and search for which capacities and …

Deploy button does not add drivers to my DMA

The issue seemed to be the DataMiner CoreGateway not being able to setup a connection with the DMA. After restarting the CoreGateway service everything started working.

installing dataminer license

Hi Ashwini, You need to restart the DMA in order to regenerate the request file. Hope it helps.

Low code app DOM transition state

Hi Gerwin, You should indeed create a script that will execute the transition by code. You can then link this script to a DOM action, which is then linked to …

Update View Property in Automation Script

Hi Pilar, You should be able to use the Class Library to achieve this See the snippet below IDms dms = engine.GetDms(); var myView = dms.GetView(“MyViewName”); if (myView.Properties.FirstOrDefault(v => v.Definition.Name …

GQI Get trrend data and Dataminer release

Hi Bruno, You can find an overview of all query data sources here: https://docs.dataminer.services/user-guide/Advanced_Modules/Dashboards_app/Using_dashboard_feeds/Configuring_GQI_feeds/Query_data_sources.html

Build error when using GetDMS in automation script

Hi Robin, I would suggest using the public NuGet package: NuGet Gallery | Skyline.DataMiner.Core.DataMinerSystem.Automation 1.1.0.4 For usings: using Skyline.DataMiner.Core.DataMinerSystem.Common; using Skyline.DataMiner.Core.DataMinerSystem.Automation; And then you can use: engine.GetDms();