User info
First name | Michiel |
Last name | Clepkens |
DevOps Program
Acquired rank |
Advocate
|
Points progress |
1214
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 QuestionHi 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 QuestionHi 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 QuestionHi 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 QuestionHi 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 QuestionHi 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 QuestionHi 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 QuestionHi 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 QuestionHi 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 QuestionHi 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 QuestionHi 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 QuestionHi Jens I think the MaxWidth property of the Label class can be used to achieve this. Kind regards
View QuestionHi 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 QuestionHi 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 QuestionHi 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 QuestionHi Michiel With the ExecuteScriptOnDomInstanceActionSettings object you can pass the names of the scripts that should be executed after a DOM Instance is created, updated, or deleted. The DOM Editor...
View QuestionHi 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 QuestionHi 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 QuestionHi 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 QuestionThanks 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 QuestionHi 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