Hi Dojo,
I try to set some parameters on an element (Haivision Media Gateway). Several parameters can be set on the "destination" table with an automation script without any problems. E.g.:
gateway.SetParameterByPrimaryKey(4060, primarykey, ipaddress);
gateway.SetParameterByPrimaryKey(4055, primarykey, port);
gateway.SetParameterByPrimaryKey(4084, primarykey, password);
...
The same attempt for the source table fails as soon as I try to set more than one value.
gateway.SetParameterByPrimaryKey(6056, primarykey, ipaddress);
gateway.SetParameterByPrimaryKey(6058, primarykey, port);
gateway.SetParameterByPrimaryKey(6066, primarykey, password);
...
The following error occurs:
"Could not verify that parameter DMAID/ElemID95/ParameterID/DisplayKey was correctly set (50 retries). Last value: Listener"
All values are checked an correct (read/write/string/int...)
Why is it not possible to set up multiple parameters on the "source" instead of the "destination"? Has anyone an idea?
BR and thank you very much in advance!
Daniel
Hi Daniel,
The problem seem to be that one of the parameters is not getting the value that was set, 'Listener', in the expected time by the read retries.
Can you verify if the value is correctly set? If so, you can disable the read after set validation by putting engine.SetFlag(RunTimeFlags.NoCheckingSets); in the first line of you Run method, that will disable the check of the sets.
Hi Daniel, then it will be something in the logic of the connector that is not processing correctly, maybe better to reach out to support so a deeper look can be taken.
Hi Jorge, I will open a support case. Thanks for your help!
Hi Jorge,
thanks for your help!
None of the values were adopted for the source.