GitHub - okleine/nCoAP: Java implementation of the CoAP protocol using netty (original) (raw)

A JAVA implementation of the CoAP

This implementation of the Constrained Application Protocol bases on the asynchronous and event-driven network application framework Netty (thats where the 'n' in nCoAP comes from). The nCoAP framework currently covers

but without DTLS (i.e. support for the coaps scheme).

Latest SNAPSHOT version (1.8.3-SNAPSHOT)

JavaDoc is available here. The nCoAP project is organized in several maven modules, i.e.,

de.uzl.itm ncoap-core

for the raw protocol implementation (including the extensions mentioned above). For CoAP application development this is probably what you want. Note, that for several reasons some interfaces and package names changed since the latest stable version (1.8.2). To use the latest bleeding edge version add the following to your pom.xml:

... itm-maven-repository-snapshots ITM Maven Snapshots Repository https://maven.itm.uni-luebeck.de/repositories/snapshots ...

...

... de.uzl.itm ncoap-core 1.8.3-SNAPSHOT ...

Examples for Client and Server

The other models, i.e.,

de.uzl.itm ncoap-simple-client

and

de.uzl.itm ncoap-simple-server

provide simple CoAP applications for both, client and server. There intention is to highlight, how easy it is to write such applications using ncoap.