1

i am creating a simple OPC UA Client. I need to know where i can find a document with the list of all standard nodes and their IDs.

Thank you Joshwa

Joshwa
  • 11
  • 1

1 Answers1

1

Depends on the version of UA, but:

https://opcfoundation.org/UA/schemas/1.02/NodeIds.csv https://opcfoundation.org/UA/schemas/1.03/NodeIds.csv https://opcfoundation.org/UA/schemas/1.04/NodeIds.csv

Most Stacks will have some kind of static enumeration available to reference as well.

For example, Eclipse Milo lists them here, and here are the ones from .NET reference implementation.

Gian Marco
  • 22,140
  • 8
  • 55
  • 44
Kevin Herron
  • 6,500
  • 3
  • 26
  • 35
  • and for node-opcua , Ids are predefined here : https://github.com/node-opcua/node-opcua/blob/master/packages/node-opcua-constants/src/opcua_node_ids.js – Etienne May 25 '18 at 20:43