Documents stored on a DMA – Folders
23rd July 2025
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. …
Answer
23rd July 2025
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. …
22nd July 2025
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 …
22nd July 2025
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 …
22nd July 2025
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 …
22nd July 2025
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 …
22nd July 2025
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 …
22nd July 2025
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.
22nd July 2025
Hi Deema, You should be able to achieve your goal by implementing a table similar to the one in Alberto’s answer to another question. Besides the table, you then need …
22nd July 2025
Hi Alberto. Last week, we merged the “User Guide” section into the “DataMiner Overview” section. As to folders, everything is now under the “/dataminer/” folder. Basically, the “basic functionality” folder …
22nd July 2025
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 …
22nd July 2025
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 …
21st July 2025
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 …
21st July 2025
Hi Jose, Having a look at the class library, the IDmsElement interface has a method to restart an element: Method Restart | DataMiner Docs Hope it helps.
21st July 2025
Hi Alma, Could you check if your connector’s Visual Studio solution is referencing the DataMiner Dev Packs | DataMiner Docs? In this case, the Skyline.DataMiner.Dev.Protocol should be the relevant one. …
21st July 2025
Hi Jesus, We have the following API available: GetServicesForView | DataMiner Docs. If you select the Root View (ID:-1), and set the includeSubViews to true, you will get the list …