OPC (OLE for Process Control)

OLE for Process Control (OPC) Device Driver allows Iotellect Server to communicate with OPC Servers, i.e. act as an OPC Client. Data provided by OPC 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.

Unlike most OPC Clients which require the OPC Server and OPC Client to reside on the same computer, Iotellect Server communicates with OPC Servers using Distributed COM (DCOM) technology. It allows Iotellect Server to access OPC Servers via IP networks or the Internet.

OPC device driver doesn’t work with OPC server installed on Windows systems that received DCOM+authentication+hardening">DCOM authentication hardening updates.

There are other ways for accessing OPC servers installed on such Windows systems:

  • Using Iotellect OPC Agent (Native OPC Client) that resides on the same machine with OPC server and communicated to it via COM instead of DCOM. OPC Agent uses Iotellect protocol to bridge OPC data to a Iotellect Server.

  • Using a third-party OPC DA to OPC UA converter (gateway) and OPC UA device driver to inject OPC data into Iotellect Server.

Another advantage of using DCOM is that Iotellect Server provides access to OPC Servers from operating systems other than Microsoft Windows, including Linux/Unix.

Iotellect Server's OPC Driver supports the OPC Data Access specification. Support for other OPC Standards and Specifications, including OPC Alarm and Events, will be implemented in future versions of Iotellect.

In order to allow Iotellect Server to access your OPC Server, it's necessary to configure DCOM service on the machine running it for remote access. See Configuring DCOM for Remote Access for information on this subject.

Configuring DCOM protocol can be tricky. If you want to leverage “classic” OPC via COM, consider using OPC Agent (Native OPC Client).

You can also upgrade to using OPC UA communications.

Item Naming

Due to Iotellect Server variable name limitations (roman letters, numbers and underscore sign) not all item name characters can be transformed to variable names directly. For items that name contains unsupported characters a name conversion is applied. Name conversion process is as follows:

  • Iotellect Server tries automatically encode most widely used characters by its roman letters representation (similar to transcription). If representation was not found then underscore character is used.

  • A hash code of the source item name is appended. To avoid duplicate names after the first step.

OPC Server Discovery

OPC device driver supports OPC server discovery. Discovery is the process of scanning a number of IP network hosts, finding available OPC servers, and creating device accounts for them.

The comprehensive description of OPC server discovery is available in Iotellect SCADA/HMI documentation.

OPC Item Value

Each of OPC items is represented as a variable with three fields:

Field

Type

Description

Timestamp

Date

Tag timestamp received from OPC Server.

Quality

Integer

An Integer value of OPC Server tag quality.

Value

Any scalar type or DataTable.

For scalar tags it is simply a tag value with appropriate field type. For one-dimension array tags it is a DataTable with single field and several records. For two-dimensional array tags it is a DataTable with several fields (named: 1,2,3 and so on) and several records. Each cell of the value's DataTable is a scalar value of array element.

OPC Item Quality

The quality of OPC items is reported as status of corresponding device setting variables. To check the status of a certain setting, open OPC device configuration in the Properties Editor and hold mouse over the setting status icon. Item quality will be shown in the tooltip.

To see the quality of all items at once, open Settings Synchronization Status tab of device status dialog. Item quality is shown in the Synchronization Status field.

Driver Information

Driver Plugin ID:

com.tibbo.linkserver.plugin.device.opc

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 Server. These settings may be accessed using Edit Device Properties action of Device Context. Here is a list of available connection properties including advanced properties:

Setting

Description

Host

IP address or host name of OPC Server.

Specification of localhost or 127.0.0.1 as an OPC server address is not allowed. Use your network address instead, e.g. 192.168.1.2.

Domain

Name of OPC Server's Windows Domain (optional).

User

Name of Windows User Account used to access the OPC Server using DCOM.

Password

Password of Windows User Account.

Application Class ID (CLSID)

Class Identifier of the OPC Server. (E.g. F8582CF2-88FB-11D0-B850-00C0F0104305)

Programmatic Identifier (PROGID)

Programmatic Identifier of OPC Server. (E.g. Matrikon.OPC.Simulation.1)

Timeout

Timeout for OPC server operations.

Group Name

Name of item group used for adding OPC items controlled by Iotellect Server. Should be set to Auto-generation in most cases.

Read Mode

OPC tags reading mode:

  • Synchronous (Device) - read tags synchronously from the device bypassing OPC Server's cache.

  • Synchronous (Cache) - read tags synchronously from the OPC Server's cache.

  • Asynchronous - read tags asynchronously from the device bypassing OPC Server's cache.

Update Rate

Rate in seconds at which asynchronous reads will occur. Determines how often the cached data can be updated at the OPC Server. 0 - mean all updates will be delivered immediately.

Deadband percent

Value deadband percent. The value should be between 0 and 100. The default value is 0, which specifies that any value change will update the OPC Server's cache. A non-zero value results in the cache value being updated only if the difference between the cached value and the current value of the item exceeds: deadbandPercent * (High EU - Low EU) / 100. This property only affects items that have an analogue data type and 'High EU' and 'Low EU' properties defined (Property IDs 102 and 103 respectively).

It it sufficient to specify either CLSID or PROGID of the OPC Server, not both of them.

Manual Items

This table allows to manually enter names of OPC tags/items to poll. This is suitable for OPC servers that do not implement or erroneously implement OPC item tree browsing.

Device Assets

Hierarchical structure of assets provided by the OPC device driver exactly matches tree-like structure of OPC item groups.

Device Settings

OPC device driver creates one Device setting variable for every OPC server item.

Type Conversion

The following table shows how OPC types are converted to Iotellect types:

OPC Type

Iotellect Type

VT_BOOL

Boolean

VT_BSTR

String

VT_NULL

String

VT_EMPTY

String

VT_INT

Integer

VT_I1

Integer

VT_I2

Integer

VT_I4

Integer

VT_UI1

Integer

VT_UI2

Integer

VT_UI4

Integer

VT_DECIMAL

Integer

VT_DATE

Date

VT_I8

Float

VT_R4

Float

VT_R8

Float

VT_CY

Float

Device Operations

No operations provided by the driver.

Device Events

No events provided by the driver.

Connection Handling

This driver makes the device Online if:

  • TCP connection to an OPC server was successfully established

  • DCOM authorization did not fail

Synchronization Details

OPC Servers are synchronized with Iotellect Server like any other Devices. Synchronization between Iotellect Server and an OPC Server includes the following steps:

  • Reading information about settings provided by OPC Server and creation of Settings Cache. Settings are divided into several groups, according to OPC Server's internal division.

  • Reading OPC Server setting values and storing these values in settings cache.

OPC Server Status

View Device Status action of OPC Server's Device Context provides additional information about OPC Server status:

  • Bandwidth

  • Build Number

  • Current Time

  • Group Count

  • Last Update Time

  • Major Version

  • Minor Version

  • Server State (Available states are: Communication Failure, Failure, Configuration Error, Running, Suspended, Test and Unknown)

  • Server State Code

  • Start Time

  • Vendor Information

Was this page helpful?