Best Approach to Enable/Disable Websockets

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 …

shape web link frozen

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 …

Best Approach to Enable/Disable Websockets

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,

DMA Redundancy Status

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 …

Resources – How to find the resource based on Equipment DVE

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))))); …