Need a help to find out set / get value on nimbra element
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 …
Answer
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 …
21st October 2021
Hi Pedro, As far as I know you can only achieve this by using below SLNet call: Note that this is an internal call and we do not recommend using …
21st October 2021
Snapshots are not the backups. There is a possibility of the DB corruptions based on the timing, but you need to follow the best practices recommended by VMWare Overview of …
21st October 2021
Hi Mark, Normally if you right click on the header , where you see MON PARAMETER NAMES you should be able export all parameter data. Is that where you’re after?
21st October 2021
The documentation states “array of strings”. The example uses single quotes, did you try with double quotes?
21st October 2021
Hi, I asked the same question some time ago when we had a problem with our systems, and I was told that this is hardcoded in the software. I suggest …