Profile

Michiel Clepkens

User info

First name Michiel
Last name Clepkens

DevOps Program

Acquired rank
Advocate
Points progress
Number of DevOps Professional Points
699 DevOps Points
Here are a few tips to level up your DevOps game and unlock an arsenal of perks and benefits.
DevOps attestation Request your attestation ID and expiry date

Achievements

Questions asked

Answers given

Hi Thijs To solve this problem, I had to install the ".Net desktop development" workload. This installation can be done using the Visual Studio Installer. A small remark is that I'm using VS Pro 2019....

View Question

Hi Sunil Thank you for reaching out! The Starlink Telemetry API connector is not available yet but the development of it will start soon. We are expecting to have an initial version of this connector...

View Question
5 Votes Selected

Hi Gina Would it be an option to implement something like this in the event handler of the Input Type dropdown? The following pieces of code use the InteractiveAutomationScriptToolkit NuGet package version...

View Question

Hi Yuki You can change the polling speed of an element by changing the [Timer base] general parameter of that element. If you set the element’s [Timer base] parameter to 3, the frequencies of the timers...

View Question
4 Votes Selected

Hi Mieke This example should help you out. Consider the following xml soap response: You could use a free online tool to convert the response into C# classes. The result should be similar to this:...

View Question
4 Votes Selected

Hi Michiel Would it be an option to do something like this? private void OnPressed(object sender, EventArgs e) { Button.IsEnabled = false; // Method body Button.IsEnabled = true; } Setting the IsEnabled...

View Question
3 Votes

Hi Mieke Your question looks similar to this question created by Gilles: Using same automation script in interactive and non-interactive mode - DataMiner Dojo Does this help you out? Kind regards

View Question
2 Votes

Hi José If I understand it correctly, I believe an Interactive Automation Script can be a possible solution. The idea is to replace the content of your form with the interactive automation script and...

View Question

Hi Chee Yang I believe the idea behind using multiple connections within a single session would be to pass data that is received by the first connection (such as cookies) onto the other connections in...

View Question
2 Votes Selected

Hi Pengf An option would be to create 10 groups, one for each parameter. Next to that you can use a condition in every group. In the condition tag you will need to define the ID of an extra parameter....

View Question

Hi José Would it be an option to link your AddLinkToChannelService script to the OnCreate property of the DOM Module Settings object? If the GUID of the selected channel is available in the DOM instance,...

View Question
1 Vote

Hi Jens I think the MaxWidth property of the Label class can be used to achieve this. Kind regards

View Question
1 Vote

Hi Gerwin Retrieving FieldValues from a DOM instance can be done using the following steps: Create an object of the DomHelper class (DomHelper class | DataMiner Docs) Create a filter to find the...

View Question
1 Vote

Hi Timothy. In addition to Sebastiaan's answer, here's a function which should return the names of the planned reservations that have overlap with a defined time range. /// <summary> /// Gets the...

View Question

Hi Gauthier Did you verify the notes that are related to the ShowInformationMessage method defined in our Protocol Development Library? Example scenarios that are supported: Write parameter that triggers...

View Question

Hi Mieke If I understand it correctly, I believe an Interactive Automation Script can be a possible solution. Did you consider this approach? Kind regards

View Question
0 Votes

Hi Manuel Please check if the required DLLs are present in the Skyline DataMiner/ProtocolScripts/DllImport folder. When DIS compiles the Automation script or protocol, it will extract the required DLLs...

View Question
0 Votes

Hi Yuki Read and write parameters are linked to each other by name. You will have to search for the write parameter which has the same name as the read parameter. The following steps should help you out:...

View Question

Thanks to Joey's tip I was able to create the following snippet which will set the alarm template of the selected child DVE: ExportTable extExportTable = new ExportTable { Id = 3000, NameColumnIdx = 1,...

View Question
0 Votes

Hi Gauthier To complete this question, due to a bug in DataMiner 10.1.8 the Protocol.ShowInformationMessage() was not working as intended. This issue is fixed in DataMiner 10.1.10: DataMiner v10.1.10...

View Question