Juniper Networks Manager (DMS-DRV-1216)
22nd October 2021
Hi Didier, Juniper Networks Manager connector works like Cisco Manager – it talks directly with the Juniper product. Since the data models (MIB) is the same for different Juniper products, …
Answer
22nd October 2021
Hi Didier, Juniper Networks Manager connector works like Cisco Manager – it talks directly with the Juniper product. Since the data models (MIB) is the same for different Juniper products, …
22nd October 2021
Hi Ross, This is a known issue on our backlog. The foreground color in the tooltips in the node-edge have a dynamic background color, but the foreground color is fixed …
22nd October 2021
Hi Jens, The slnet clienttesttool shows the resource properties ‘Logo’ and ‘Tag’ indeed. Both of them have no value assigned. Apparently the cube resources app doesn’t show the resource properties …
22nd October 2021
Hey Divagar. I think I misread your question. If you are searching for the internal values used to set that specific parameter, this is our mapping: Up –> 1 Down …
22nd October 2021
At first, it seems the issue is not related to the certificate so I would recommend clearing the XBAP cache and re-trying.
22nd October 2021
Hey Divagar, To add a parameter to a Visio, you will have to use a shape data field. You’ll have to add a field of type element (linking to the …
22nd October 2021
Hi Divagar In our Nimbra Manager application we have a script where you can enable/disable a Nimbra service. Disabling a service is setting the admin status of the TTP on …
22nd October 2021
To actually verify if the “Compile in using debug mode” is checked, you can use the following code: var scriptInfo = engine.SendSLNetSingleResponseMessage(new GetScriptInfoMessage(“your script name here”)) as GetScriptInfoResponseMessage; bool isDebug …
22nd October 2021
CurrentCulture is the culture of the thread, which is normally the culture of the OS, unless overridden. I suppose some other QAction sets the Thread culture to InvariantCulture. Depending on …
22nd October 2021
Besides using the DEBUG define, you could check at runtime if the current assembly is compiled in DEBUG with the following code: var assembly = Assembly.GetExecutingAssembly(); bool isDebug= assembly.GetCustomAttributes(false).OfType<DebuggableAttribute>().Any(da => …
21st October 2021
Hi, You can request the status of the failover with this message. FailoverConfigMessage fc = engine.SendSingleResponseMessage(new GetInfoMessage(yourDataMinerID, InfoType.FailoverConfig)) as FailoverConfigMessage; DmsAgent[] agents = fc.Agents; If you loop through the agents, …
21st October 2021
Your “type” tags are not correct. It should be something like this:
21st October 2021
I understand the additional security layer for local users where pw is not saved, but what would be the benefit for domain users in your scenario? I mean, one of …
21st October 2021
Further investigation showed us that multiple NICs were configured without an IP address and no priority was assigned to the NIC with an IP address. The DM version installed with …
21st October 2021
Hi Adrian, the only way I can think of is to use embedded VDX pages. You can accomplish this by: making a tab page with just one rectangle shape on …