OPC UA (OPC Unified Architecture)
OPC Unified Architecture (OPC UA) Device Driver allows Iotellect Server to communicate with OPC UA Servers, i.e. act as an OPC UA Client. Data provided by OPC UA Servers (and hardware devices "behind" them) is converted into unified form to allow access from different Iotellect facilities. See Devices article for more information about the "normalized" representation of devices in Iotellect.
Driver Information
Driver Plugin ID: | com.tibbo.linkserver.plugin.device.opcua |
Global Settings
None defined.
User Level Settings
None defined.
Device Account Properties
Connection Properties
Connection settings define how Iotellect Server communicates with a certain OPC UA Server. These settings may be accessed using Edit Device Properties action of device Context. Here is a list of available connection properties:
Setting | Description |
URL | URL of an OPC UA server, of the format
|
Address Space Source Paths | A table of OPC UA server address space nodes that will be "visible" from inside Iotellect Server along with their subnode trees. Simply speaking, this is a list of OPC UA server's root nodes that are connected to Iotellect Server. |
Username | Username to use for authentication. ![]() Set the value of User to |
Password | Password to use for authentication. |
Security Mode | OPC UA communications security mode. Controls whether to encrypt connections to the OPC UA Server. If encryption is used, choose whether to sign or sign and encrypt communications, and which algorithm to use. Options include:
|
Max Cache Age | Controls whether the OPC UA server should use cached value or attempt to read it from underlying data source (e.g. a device) upon Iotellect Server's read request. If the server does not have a value that is within the maximum age, it will read to new value from the data source. Setting this value to zero will effectively cause direct data source access during every synchronization. It may harm performance but can help to avoid outdated values. |
Tag Hash Suffix |
|
Tags Read Strategy | Defines the method used to read data from the OPC UA server. Possible values are:
|
Max Message Size | The maximum size, in bytes, of a message that can be sent or received by the Iotellect Server OPC UA client. This setting helps control network traffic and prevents overly large data packets from causing communication issues. Increasing this value may be necessary when dealing with a large number of tags or large data values. This limit is applied to the entire encoded message. |
Max Buffer Size | The maximum size, in bytes, of the buffer used for receiving OPC UA messages. The buffer must be large enough to hold the largest expected message. This value limits the largest chunk of decoded data. |
Max String Length | The maximum allowed length, in characters, for string values retrieved from the OPC UA server. Increasing this setting allows the client to handle larger string data. |
Max Byte String Length | The maximum allowed length, in bytes, for byte string values retrieved from the OPC UA server. Similar to Max String Length, but applies to byte strings rather than text strings. Applies to binary data. |
Max Array Length | The maximum number of elements allowed in an array value retrieved from the OPC UA server. Increase this, if the server provides node values as arrays, and if the array size is large. |
Sampling Interval | Specifies the time interval at which the driver should sample the values of subscribed tags. Considered only when the Tags Read Strategy is |
Max Tags Per Subscription | Defines the maximum number of tags that can be included in a single subscription. This can be used to manage network traffic and server load by grouping tags into smaller subscriptions. Considered only when the Tags Read Strategy is |
Certificate Trust Policy | Defines how to verify certificates provided via an SSL/TLS connection. |
Certificate | Alias of an SSL/TLS certificate to use for authentication. The certificate with that alias must exist in the Client Certificate storage of the Iotellect server. |
Custom Definitions
When the driver extracts tag addresses from an OPC UA device, the tag names are assigned default variable names in Iotellect. The custom definitions table allows tag addresses to be assigned custom variable names. The mapping from OPC tag addresses to custom variable names has two columns:
Name | Custom variable name to which the OPC tag address will be mapped. |
OPC Tag Address | OPC UA device tag address to be assigned custom variable name. |
Event Subscriptions
Event subscriptions table defines how OPC UA events are converted into Iotellect events. It has the following columns:
Name | Name of Iotellect event. Should satisfy event naming rules, e.g. include only English letters, numbers and underscores. |
Description | Human-friendly description of Iotellect event. |
Object Path | Path of OPC UA nodes those events will be converted into Iotellect events. |
Event Type | Type of OPC UA event that will be converted into Iotellect event. |
Device Assets
OPC UA device driver creates an asset for each node of OPC UA server node tree.
Device Settings
OPC UA device driver creates a Device setting variable for each OPC UA node attribute.
Device Operations
OPC UA device driver creates a Device context function for each OPC UA node method.
The driver also provides Read History Values operation that retrieves a range of historical tag values from the OPC UA server.
Device Events
OPC UA device driver creates a Device context event for each record in Event Subscriptions table. It listens events matching the record and once such an event occurs it's corrected into an Iotellect context event defined by the record.
Connection Handling
This driver makes the device Online if:
TCP connection to an OPC UA server was successfully established
OPC UA authorization did not fail
Synchronization Details
OPC UA Servers are synchronized with Iotellect Server like any other Devices. Synchronization between Iotellect Server and an OPC UA Server includes the following steps:
Reading information about settings provided by the OPC UA Server and creation of Settings Cache. Settings are divided into several groups, according to OPC UA server's internal division.
Reading OPC UA Server setting values and storing these values in settings cache.
Was this page helpful?