Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Select openSCADA Orion and openSCADA Orilla for installation.

Image Added

After restart of the workbench it is possible to start an exporter file directly from the IDE.

...

Code Block
themeEclipse
languagehtml/xml
titleexporter.xml
linenumberstrue
<?xml version="1.0" encoding="UTF-8"?>
<exporter:configuration
    xmlns:exporter="http://openscada.org/DA/Server/Exporter"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:hive="http://openscada.org/DA/Hive"
    xmlns:item="http://openscada.org/DA/Hive/DataItem"
    xmlns:opc="http://openscada.org/DA/OPC/Configuration"
    xmlns:chain="http://openscada.org/DA/Hive/ItemChain"
    xmlns:proxy="http://openscada.org/DA/Proxy/Configuration"
    xsi:schemaLocation="
    http://openscada.org/DA/Server/Exporter schema/openscada/exporter.xsd
    http://openscada.org/DA/Hive schema/openscada/Hive.xsd
    http://openscada.org/Common schema/openscada/Common.xsd
    http://openscada.org/DA/Hive/DataItem schema/openscada/DataItem.xsd
    http://openscada.org/DA/OPC/Configuration schema/openscada/opc.xsd
    http://openscada.org/DA/Proxy/Configuration schema/openscada/proxy.xsd
    ">
    
<exporter:hive ref="org.openscada.da.server.opc.Hive">
    <exporter:configuration>
        <opc:root xmlns:opc="http://openscada.org/DA/OPC/Configuration">
            <opc:connections>

                <opc:configuration
                        password="your password"
                        host="your host"
                        user="your user"
                        domain=""
                        access="sync"
                        enabled="true"
                        tree-browser="true"
                        flat-browser="false"
                        refresh="250"
                        ignoreTimestampOnlyChange="true"
                        alias="TOPSERVER">
                        <opc:clsid>680DFBF7-C92D-484D-84BE-06DC3DECCD68</opc:clsid>
                </opc:configuration>
            
            </opc:connections>

        </opc:root>
        
    </exporter:configuration>
    
    <exporter:export uri="da:ngp://0.0.0.0:2107" />
</exporter:hive>

</exporter:configuration>

Now you can do a right click on the file, select "openSCADA DA/Start Exporter". This will open the "Hive Runner" Window.

Image Added

After click on start, you should be able to connect using the OSTC. If the Topserver is configured exactly like in part I of our tutorial, it should look a bit like this:

Image Added

Thats it.

Connecting to the OPC Driver using the openSCADA API

To be done