Search found 369 matches

Search

by gschijndel
Mon Oct 13, 2025 1:22 pm
Forum: Bugs / Problems
Topic: IEC 104 - Driver
Replies: 3
Views: 5574

Re: IEC 104 - Driver

In case you want only the active server connecting to the RTU, this setting is available since 3.18+P010. . 138090/1-6594394371: For IEC 60870-5-104 driver it is now possible that only the active driver connects to the RTU. This can be used for configurations, where the RTU accepts only one connecti...
by gschijndel
Mon Sep 08, 2025 5:28 pm
Forum: HowTos
Topic: Alternative to timed functions
Replies: 5
Views: 3228

Re: Alternative to timed functions

Sounds a bit like the panel topology or the group alert facility part of it.
by gschijndel
Mon Sep 08, 2025 10:09 am
Forum: HowTos
Topic: Alternative to timed functions
Replies: 5
Views: 3228

Re: Alternative to timed functions

I would not recommend this alternative as it has several disadvantages: 1. Datapoint functions are executed by the event manager resulting in an overall lower system performance. While the event manager is running datapoint functions it cannot process incoming messages. 2. Library updates cannot be ...
by gschijndel
Thu Aug 07, 2025 9:44 am
Forum: HowTos
Topic: Is there a way to create a custom config?
Replies: 9
Views: 4405

Re: Is there a way to create a custom config?

As a last resort it is possible to use the _general config
by gschijndel
Tue Jul 22, 2025 9:16 am
Forum: HowTos
Topic: Decoding json in Desktop UI
Replies: 6
Views: 24468

Re: Decoding json in Desktop UI

Try this:

Code: Select all

string path = getPath(DATA_REL_PATH, "mappings/example.json"); fileToString(path, jsonData); 
The function 'getPath' only downloads a specific file to the client (not whole directories).
by gschijndel
Thu Jul 17, 2025 3:03 pm
Forum: HowTos
Topic: Is there a way to create a custom config?
Replies: 9
Views: 4405

Re: Is there a way to create a custom config?

If you do not mind adding an extra datapoint element, then you should look at the DP function.
by gschijndel
Mon Jul 07, 2025 10:36 am
Forum: HowTos
Topic: Azure AD SSO/MFA for WinCC OA Authentication
Replies: 2
Views: 1407

Re: Azure AD SSO/MFA for WinCC OA Authentication

Also check the roadmap as it mentions MFA and Azure Entity ID. Although not all mentioned features will be delivered with 3.21.
by gschijndel
Thu Jul 03, 2025 11:23 am
Forum: HowTos
Topic: How to handle line endings in Git
Replies: 6
Views: 3717

Re: How to handle line endings in Git

The dpl file is a tab separated values file. There should be no number of bytes to read in it. But when you are busy with the .gitattributes you should also consider to enable git-lfs for binary files. It makes cloning faster due to a smaller repo size. In case linguist is used to determine the lang...
by gschijndel
Fri Jun 13, 2025 12:05 pm
Forum: HowTos
Topic: Overriding standard library functions
Replies: 2
Views: 3068

Re: Overriding standard library functions

Try to avoid modifying standard files by using hook functions Minimize the number of changes in the standard files, for example by adding hook functions. Due to the required maintenance effort it might be more efficient to use an own implementation. Add a comment block at the top of the file explai...
by gschijndel
Tue Apr 22, 2025 9:02 am
Forum: Bugs / Problems
Topic: run control manager with callback from class
Replies: 3
Views: 3464

Re: run control manager with callback from class

I guess that because no instance is passed to the connect function the instance is destroyed and therefore also the connect. Try it with 'this' as object parameter before the callback function parameter. An example with a control++ class would be helpful in the documentation, but luckily it can be f...