Can anyone tell me the syntax for multiple node read in single request to server in open62541.
i have been doing a single read request by
UA_Client_readValueAttribute(client, UA_NODEID_STRING(1, "variable"), &value)
from the open62541 client to server.
You can use the standard read service:
See: https://github.com/open62541/open62541/blob/6c82b082c8a6c3b1faebc43387a1b0cb3eced051/include/ua_client.h#L203
E.g.:
Crosspost: https://github.com/open62541/open62541/issues/1426