Documents stored on a DMA – Folders

Hi Shawn, please see the attached. We want to avoid making links to other systems that can be broken. So we have the thought of adding the documents to DM. …

Performance details about DOM

Hi Edib, You’re right—the current DOM documentation is quite vague and avoids giving specific numbers. That’s pretty much intentional, as the ideal setup really depends on many factors, including the …

DOM Attachment – History and size

Hi Felix, I’m afraid this won’t be possible without actually reading the files from the filesystem, the only things the AttachmentsHelper provide is a method to get all filenames from …

Parsing exported DOM Module

Hi Bautista, The safest way would be to generate your own exports using the same class structure as you used to import them. This ensures that the packages are and …

LCA – GQIDS – Download DOM Attachment

Hi Felix, Nice that you got the download through IAS working! The AttachmentsHelper (DomHelper.DomInstances.Attachments) has a method GetFileNames() which returns all file names of attachments for a DOM Instance. You …

BroadCastPopupRequestMessage: how to use, how to implement?

Hi Nils, It should be possible to get a list of all connected users as following: var users = connection.HandleResponseMessage(new GetInfoMessage(InfoType.ClientList)) .Cast<LoginInfoResponseMessage>() .Where(c => (c.ConnectionAttributes & ConnectionAttributes.Cube) == ConnectionAttributes.Cube) .Select(c …

Restarting Current Element from QAction

Can you elaborate the use case why you would like to restart the element? Depending on your use case, there might bet better alternatives than restarting the element.

PTP IN CISCO NEXUS VERSION 9.3(3)

Hi Kaoi, In may case, I added following config for NXAPI. feature nxapi nxapi http port 80 nxapi use-vrf default And also, have you tried manual polling by clicking button …

Get Service Protocol version via API

Hi Jesus, I have been able to reproduce the issue that you are experiencing. When using the method GetService to retrieve information about a service, I am also unable to …

Parsing exported DOM Module

For the time being, I’m using this class for deserializing Modules: Somethings to know is that if you use this class, you’re going to need to set your JsonSerializerSettings to …