Joshwa
Joshwa

Reputation: 11

Where can I find Standard Node (and IDs) in the OPC UA Specification?

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

Upvotes: 1

Views: 1052

Answers (1)

Kevin Herron
Kevin Herron

Reputation: 7005

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.

Upvotes: 1

Related Questions