The SupportInfo Interface defines a number of additional data that a commonly exposed for Devices and their components. These include mainly images, documents, or protocol-specific data. The various types of information is organized into different folders. Each information element is represented by a readonly Variable. The information can be retrieved by reading the Variable value.
Figure 8 Illustrates the SupportInfo Interface. It is formally defined in Table 26.
Figure 8 – Support information Interface
Table 26 – ISupportInfoType definition
Attribute |
Value |
||||
BrowseName |
ISupportInfoType |
||||
IsAbstract |
True |
||||
References |
NodeClass |
BrowseName |
DataType |
TypeDefinition |
Other |
Subtype of the BaseInterfaceType defined in OPC 10001-7 |
|||||
|
|
|
|
||
0:HasComponent |
Object |
DeviceTypeImage |
|
0:FolderType |
O |
0:HasComponent |
Object |
Documentation |
|
0:FolderType |
O |
0:HasComponent |
Object |
DocumentationFiles |
|
0:FolderType |
O |
0:HasComponent |
Object |
ProtocolSupport |
|
0:FolderType |
O |
0:HasComponent |
Object |
ImageSet |
|
0:FolderType |
O |
Conformance Units |
|||||
DI DeviceSupportInfo |
Clients need to be aware that the contents that these Variables represent may be large. Reading large values with a single Read operation may not be possible due to configured limits in either the Client or the Server stack. The default maximum size for an array of bytes is 1 megabyte. It is recommended that Clients use the IndexRange in the OPC UA Read Service (see OPC 10000-4) to read these Variables in chunks, for example, one-megabyte chunks. It is up to the Client whether it starts without an index and repeats with an IndexRange only after an error or whether it always uses an IndexRange.
The components of the ISupportInfoType have additional references as defined in Table 27.
Table 27 – ISupportInfoType Additional Subcomponents
Source Path |
References |
NodeClass |
BrowseName |
DataType |
TypeDefinition |
Other |
DeviceTypeImage |
0:HasComponent |
Variable |
<ImageIdentifier> |
0:Image |
0:BaseDataVariableType |
MP |
Documentation |
0:HasComponent |
Variable |
<DocumentIdentifier> |
0:ByteString |
0:BaseDataVariableType |
MP |
DocumentationFiles |
0:HasComponent |
Object |
<DocumentFileId> |
|
0:FileType |
MP |
ProtocolSupport |
0:HasComponent |
Variable |
<ProtocolSupportIdentifier> |
0:ByteString |
0:BaseDataVariableType |
MP |
ImageSet |
0:HasComponent |
Variable |
<ImageIdentifier> |
0:Image |
0:BaseDataVariableType |
MP |
Pictures can be exposed as Variables organized in the DeviceTypeImage folder. There may be multiple images of different resolutions. Each image is a separate Variable.
All images are transferred as a ByteString. The DataType of the Variable specifies the image format. OPC UA defines BMP, GIF, JPG and PNG (see OPC 10000-3).
Documents in many cases will represent a product manual. They may be exposed as Variables or as FileType instances. Files are useful in particular for large documents.
- Documents as Variables are represented as a ByteString and organized in the Documentation folder. The BrowseName of each Node will consist of the filename including the extension that can be used to identify the document type. Typical extensions are “.pdf” or “.txt”.
- Documents as FileType instances are organized in the DocumentationFiles folder. They are retrieved from the Server by using the FileType Methods. It is recommended to use the MimeType Property to specify the media type of the file based on RFC 2046.
Protocol support files are exposed as Variables organized in the ProtocolSupport folder. They may represent various types of information as defined by a protocol. Examples are a GSD or a CFF file.
All protocol support files are transferred as a ByteString. The BrowseName of each Variable shall consist of the complete filename including the extension that can be used to identify the type of information.
Images that are used within UIElements are exposed as separate Variables rather than embedding them in the element. All image Variables will be aggregated by the ImageSet folder. The UIElement shall specify an image by its name that is also the BrowseName of the image Variable. Clients can cache images so they don't have to be transferred more than once.
The DataType of the Variable specifies the image format. OPC UA defines BMP, GIF, JPG and PNG (see OPC 10000-3).