Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

EclipseNeoSCADA/Components/IEC60870

Revision as of 05:03, 17 February 2017 by Unnamed Poltroon (Talk) (Created page with "This page gives a short overview on the IEC 60870 communication stack provided by Eclipse NeoSCADA. This stack is designed in a way that it can be also used as a library outsi...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

This page gives a short overview on the IEC 60870 communication stack provided by Eclipse NeoSCADA. This stack is designed in a way that it can be also used as a library outside of NeoSCADA.

Javadoc: http://download.eclipse.org/eclipsescada/javadoc/0.4/index.html?org/eclipse/neoscada/protocol/iec60870/package-summary.html

Maven

Maven Coordinates:


<!-- common components -->
<dependency>
    <groupId>org.eclipse.neoscada.protocols</groupId>
    <artifactId>org.eclipse.neoscada.protocol.iec60870</artifactId>
    <version>0.4.0</version>
</dependency>

<!-- client communication stack -->
<dependency>
    <groupId>org.eclipse.neoscada.protocols</groupId>
    <artifactId>org.eclipse.neoscada.protocol.iec60870.client</artifactId>
    <version>0.4.0</version>
</dependency>

<!-- client data module -->
<dependency>
    <groupId>org.eclipse.neoscada.protocols</groupId>
    <artifactId>org.eclipse.neoscada.protocol.iec60870.client.data</artifactId>
    <version>0.4.0</version>
</dependency>

<!-- server communication stack -->
<dependency>
    <groupId>org.eclipse.neoscada.protocols</groupId>
    <artifactId>org.eclipse.neoscada.protocol.iec60870.server</artifactId>
    <version>0.4.0</version>
</dependency>

<!-- server data module -->
<dependency>
    <groupId>org.eclipse.neoscada.protocols</groupId>
    <artifactId>org.eclipse.neoscada.protocol.iec60870.server.data</artifactId>
    <version>0.4.0</version>
</dependency>

Back to the top