Via multithreaded timers it is possible to send http requests in parallel.
Documentation can be found here: https://help.dataminer.services/development/#t=DataMinerDevelopmentLibrary_Customer%2Fpart1PDG%2FPDGAdvancedFunctionality%2FHTTP1.htm
It has an example on how to create an http request. What needs to be done to create an https request?
My first idea was to adjust the url that is passed in the requestSettings array to use this format:
url = "https://<ip>:<port>"?
is this enough?
Prefixing the URL with https:// should be sufficient to use SSL/TLS.
If the default port for HTTPS (i.e. 443) is used, it can also be omitted from the URL.