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