OPC-DA transport handler to access measurements using the OPC industry standard. The implementation is based on the Utgard library from the OpenSCADA project.
domain: The domain namehost: The host nameusername: The username
password: The passwordpath: Collection of path to different OPC items separated by ";"clsid: The class identifierprogid: The program identifier period:Returns the value of the OPC item
Returns the quality of the OPC item
Returns the error code of the OPC item
Returns the timestamp of the OPC item
| output = ACCESS({Source='source',
wrapper='GenericPush',
transport='OPC-DA',
protocol='None',
dataHandler='Tuple',
options=[['host', 'example.com'],['domain', 'Domain'],['username', 'admin'],['password', '12345']],
schema=[
['value', 'Double']]
}) | 
| CREATE STREAM source (value Double)
    WRAPPER 'GenericPush'
    PROTOCOL 'None'
    TRANSPORT 'OPC-DA'
    DATAHANDLER 'Tuple'
    OPTIONS ( 'host' 'example.com', 'domain' 'Domain', 'username' 'admin', 'password' '12345')
 |