Best Approach to Enable/Disable Websockets
20th April 2022
Depending on how you are implementing the connection (standard or via QAction), I’d say you can either disable timeouts for the specific connections or use group conditions to not even …
Answer
20th April 2022
Depending on how you are implementing the connection (standard or via QAction), I’d say you can either disable timeouts for the specific connections or use group conditions to not even …
19th April 2022
Hi Joseph I think this information can be useful for you DataMiner Cube Deployment Methods Regards
19th April 2022
Hello DOJO I respond for myself After a lot of searches and tests, it’s a problem linked to some PC client. I don’t know yet why, but on some PCs …
19th April 2022
Hi Pedro, Would a condition based on a toggle button (enabled/disabled) be a valid workaround? That way the response would be parsed (or not) based on that condition. Kind regards,
19th April 2022
Hi Sebastiam, I performed a small test and I was able to send a trap to a different port. Below a excerpt of the QAction that takes care of preparing …
18th April 2022
Hi Mieke, This will depend from connector to connector, depending on how the relations were built. In general the linking should be done in the following way: in your FunctionResource …
15th April 2022
I could find the PK of the (regular connector) DVE by creating the below helper. Usage: var dmaId = 1000; var elementId = 1; Element myRandomElement = engine.FindElement(dmaId, elementId); var …
15th April 2022
Both DVE Name and the Resource ID are stored in the [Generic DVE table]; therefore you should be able to access resource Id from DVE name using data available in …
15th April 2022
Both DVE Name and the Resource ID are stored in the [Generic DVE table]; therefore you should be able to access resource Id from DVE name using data available in …
15th April 2022
Hi Mieke, You can get the function resource from the equipment DVE. You do need the Primary Key and Table ID from the DVE table of the main. Then, you …
15th April 2022
Hi Simon, I believe you’ll need to use a protocol to get the failover KPIs in an element. Once you have this information available in an element, you could use …
15th April 2022
Hi Mieke, If you want the exact function resource (pseudo code): var functionID = Guid.NewGuid(); var dveElement = new LiteElementInfoEvent(); //server filter FilterElement<Resource> dveFunctionFilter = FunctionResourceExposers.FunctionGUID.Equal(functionID).AND( FunctionResourceExposers.MainDVEDmaID.Equal(dveElement.DveParentDmaId).AND( FunctionResourceExposers.MainDVEElementID.Equal(dveElement.DveParentElementId).AND( ResourceExposers.DmaID.Equal(dveElement.DataMinerID).AND( ResourceExposers.ElementID.Equal(dveElement.ElementID))))); …
15th April 2022
Hi, You probably won’t be able to add the icon on a drawing as a separate shape. You could include a ParameterControl shape on the drawing though, which will display …
14th April 2022
Hi, We did some internal testing and could indeed see there’s an issue with this memory files in subscripts. A task was created to get this resolved. As soon as …
14th April 2022
Hi Thomas we have a known issue in the caching mechanism of the web API’s. Sometimes the cloud connection state is not correctly refreshed which leads the web apps to …