the eclipse m2m iwg and standards for the internet of things

63
The Eclipse M2M IWG Werner Keil Eclipse DemoCamp Copenhagen 21 st November 2012 and Standards for The Internet of Things

Upload: werner-keil

Post on 19-Jun-2015

4.216 views

Category:

Documents


5 download

DESCRIPTION

This session highlights how the M2M IWG can play a role in the Internet of Things and Distributed Sensor Web as well as related technologies like Smart Home, Automotive or Transport/Logistics (allowing containers to automatically notify you if e.g. their temperature changes beyond a healthy range;-) We demonstrate how existing Java standards like JSR 256 (Mobile Sensor API) can be improved or replaced towards a new generation of Java Embedded and Mobile. Taking technologies like the IEEE 1451 "Smart Sensor" standard into consideration, as well as OGC standards like SensorML or The Unified Code for Units of Measurement (UCUM) allowing type and context safe data transfer using various formats and protocols, whether it is XML, JSON or specific M2M protocols like MQTT or OMA-DM.

TRANSCRIPT

Page 1: The Eclipse M2M IWG and Standards for the Internet of Things

The Eclipse M2M IWG

Werner Keil

Eclipse DemoCamp Copenhagen

21st November 2012

and Standards forThe Internet of Things

Page 2: The Eclipse M2M IWG and Standards for the Internet of Things

Overview

• Introduction•Sensors

• Historic IT Errors and Bugs• UOMo, Unit-API, UCUM• Sensor Web, SensorML

• M2M• Use Cases

•NFC• eNFC, Use Cases

•Security• TPM, TEE, Secure Element, JavaCard

•New Embedded Java Standards•Q&A2 © 2007-2012 Creative Arts & Technologies

Page 3: The Eclipse M2M IWG and Standards for the Internet of Things

Who am I?

3 © 2007-2012 Creative Arts & Technologies

Werner Keil

• Consultant – Coach

• Creative Cosmopolitan

• Open Source Evangelist

• Software Architect

• Java Godfather

• JCP Executive Committee Member

• Eclipse UOMo Project Lead

• Mærsk DevOps Build Manager

• …

Twitter @wernerkeil

Page 4: The Eclipse M2M IWG and Standards for the Internet of Things

Java Godfather?

4 © 2007-2012 Creative Arts & Technologies

Page 5: The Eclipse M2M IWG and Standards for the Internet of Things

Type-Safety

•Java does not have strongly typed primitive types (like e.g. Ada or Smalltalk).

• This is likely to change around Java 9 or 10 (based on Oracle Road Map and statements)

•For performance reasons most developer prefer primitive types over objects in their interface.

•Primitives type arguments can more easily lead to name clashes (methods with the same signature)

5 © 2007-2012 Creative Arts & Technologies

Page 6: The Eclipse M2M IWG and Standards for the Internet of Things

What do these disasters have in common?•Patriot Missile

The cause was an inaccurate calculation of the time since boot due to a computer arithmetic error.

•Ariane 5 ExplosionFloating point number which a value was converted from had a value greater than what would be represented by a 16 bit signed integer.

• Gimli Glider (near disaster)Fuel loading was miscalculated through misunderstanding of the recently adopted Metric System, replacing the Imperial System

6 © 2007-2012 Creative Arts & Technologies

Page 7: The Eclipse M2M IWG and Standards for the Internet of Things

•Mars Orbiter Preliminary findings indicate that one team used US/English units (e.g. inches, feet and pounds) while the other used metric units for a key spacecraft operation.

• NASA lost a $125 million Mars orbiter because a Lockheed Martin engineering team used English units of measurement while the agency's team used the more conventional metric system for a key spacecraft operation

• A credible source disclosed, there was a manual step with an outsourced person to convert these calculations between the different teams, and NASA budget cuts caused them to fire him and have the wrong, unpatched data transmitted!!!

• This also underlines the added risk when 3rd party contractors are involved or projects are developed Offshore

What do these disasters have in common?

8 © 2007-2012 Creative Arts & Technologies

Page 8: The Eclipse M2M IWG and Standards for the Internet of Things

23rd March 1983. Ronald Reagan announces SDI (or “Star Wars”): ground-based and space-based systems to protect the US from attack by strategic nuclear ballistic missiles.

NASA “Star Wars” Initiative, 1983

9 © 2007-2012 Creative Arts & Technologies

Page 9: The Eclipse M2M IWG and Standards for the Internet of Things

1985

Mirror on underside of shuttle

SDI Experiment: The Plan

Big mountain in Hawaii

10 © 2007-2012 Creative Arts & Technologies

Page 10: The Eclipse M2M IWG and Standards for the Internet of Things

1985

SDI Experiment: What really happened

11 © 2007-2012 Creative Arts & Technologies

Page 11: The Eclipse M2M IWG and Standards for the Internet of Things

1985: What happened?

12 © 2007-2012 Creative Arts & Technologies

Page 12: The Eclipse M2M IWG and Standards for the Internet of Things

What do these disasters have in common?•Patriot MissileThe cause was an inaccurate calculation of the time since boot due to a computer arithmetic error.

•Ariane 5 ExplosionThe floating point number which a value was converted from had a value greater than what would be represented by a 16 bit signed integer.

13 © 2007-2012 Creative Arts & Technologies

Page 13: The Eclipse M2M IWG and Standards for the Internet of Things

Unit Tests wouldn‘t find these…

•All previous example illustrate three categories of errors difficult to find through Unit Testing:

• Interface Errors (e.g. millisecond/second, radian/degree, meters/feet).

• Arithmetic Errors (e.g. overflow).

• Conversion Errors.

Despite their name

14 © 2007-2012 Creative Arts & Technologies

Page 14: The Eclipse M2M IWG and Standards for the Internet of Things

Causes of Conversion Errors

•Ambiguity on the unit• Gallon Dry / Gallon Liquid

• Gallon US / Gallon UK

• Day Sidereal / Day Calendar

• Degree Celsius / Degree Fahrenheit• Did you know that Gabriel Fahrenheit was born in Gdansk (Danzig) in northern

Poland?

• ...

•Wrong conversion factors:static final double PIXEL_TO_INCH = 1 / 72;

double pixels = inches * PIXEL_TO_INCH

15 © 2007-2012 Creative Arts & Technologies

Page 15: The Eclipse M2M IWG and Standards for the Internet of Things

ALL OF THEM HAPPENED IN MOBILE, REAL TIME OR EMBEDDED SYSTEMS!

What else do they have in common?

16 © 2007-2012 Creative Arts & Technologies

Page 16: The Eclipse M2M IWG and Standards for the Internet of Things

Measurement Package

• Namespace: org.osgi.util.measurement

• SI only Unit API “in the closet”• Unit

Essentially an SI singleton holding relevant unit constants, too.• Measurement

Represents a value with an error, a unit and a time-stamp. • State

Groups a state name, value and timestamp.

•Some usage, especially in Automotive

► no further development by OSGi

OSGi

17 © 2007-2012 Creative Arts & Technologies

Page 17: The Eclipse M2M IWG and Standards for the Internet of Things

Mobile Sensor API

• Namespace: javax.microediton.sensor*

• Focusing on Sensors, but it got a minimalistic Unit API “in the closet”

• UnitEssentially an SI singleton holding relevant unit constants, too.

• ChannelInfoHolding name, accuracy, data type,measurement ranges, scale and unit

• MeasurementRangeRange of possible values from minimum to maximum

► Dead on Arrival (no actual handsets or vendors using it today, nor does Java ME Embedded)

JSR-256

18 © 2007-2012 Creative Arts & Technologies

Page 18: The Eclipse M2M IWG and Standards for the Internet of Things

Units Specification

•Namespace: javax.measure.*

•Only one interface and one abstract class• Measurable<Q extends Quantity> (interface)

• Measure<V, Q extends Quantity> (abstract class)

•Three sub-packages• unit (holds the SI and NonSI units)

• quantity (holds dimensions mass, length)

• converter (holds unit converters)

JSR-275

19 © 2007-2012 Creative Arts & Technologies

Page 19: The Eclipse M2M IWG and Standards for the Internet of Things

Units of Measurement API

•Namespace: org.unitsofmeasurement.*

•Only interfaces (and exception classes)• public interface Quantity<Q extends Quantity<Q>>

• public interface Unit<Q extends Quantity<Q>>

•Three sub-packages• quantity (holds dimensions mass, length,...)

• Unit (holds units)

• service (OSGi services)

The King is Dead…

20 © 2007-2012 Creative Arts & Technologies

Page 20: The Eclipse M2M IWG and Standards for the Internet of Things

Eclipse UOMo

One Small Step…

Page 21: The Eclipse M2M IWG and Standards for the Internet of Things

One Unit Framework to Measure them All

•Namespace: org.eclipse.uomo.*

•Two main areas• Static Type Safe Units of Measure Support

• Based on Units of Measurement API

• On top of ICU4J, the Globalization standard at Eclipse and others (Android, GWT, Google Financial, etc.)

• Prime UCUM Implementation• Successor to Eclipse OHF UCUM Bundle

Eclipse UOMo

22 © 2007-2012 Creative Arts & Technologies

Page 22: The Eclipse M2M IWG and Standards for the Internet of Things

Unified Code for Units of Measure

The Unified Code for Units of Measure is inspired byand heavily based on

• ISO 2955-1983

• ANSI X3.50-1986

• HL7's extensions called ISO+

UOMo UCUM

23 © 2007-2012 Creative Arts & Technologies

Page 23: The Eclipse M2M IWG and Standards for the Internet of Things

Slide by NASA

Sensor Web | What is it?

Page 24: The Eclipse M2M IWG and Standards for the Internet of Things

“A coordinated observation infrastructure composed of a distributed collection of resources that can collectively behave as a single, autonomous, task-able, dynamically adaptive and reconfigurable observing system that provides raw and processed data, along with associated meta-data, via a set of standards-based service-oriented interfaces.” (Glenn, 2007)

25 © 2007-2012 Creative Arts & Technologies

Sensor Web | What is it?

Page 25: The Eclipse M2M IWG and Standards for the Internet of Things

OGC O&M Observations & Measurements Approved

SensorML Sensor Model Language Approved

TransducerML Transducer Model Language Approved

OGC SOS Sensor Observations Service Approved

OGC SPS Sensor Planning Service Approved

OGC SAS Sensor Alert Service In progress

OGC WNS Web Notification Services In progress

Sensor Web | OpenGIS Standards

• SW Enablement working group at OGC have developed a number of standards governing different aspects of Sensor Web

26 © 2007-2012 Creative Arts & Technologies

Page 26: The Eclipse M2M IWG and Standards for the Internet of Things

27

Sensor Web | What is the OGC?

• Not-for-profit• International industry consortium • Founded 1994, currently 340+ members• Open Standards development by consensus process

OGC Mission

To lead in the development, promotion and harmonization of open spatial standards …

27 © 2007-2012 Creative Arts & Technologies

Page 27: The Eclipse M2M IWG and Standards for the Internet of Things

Sensor Web | Mozambique floods

•The task under study is floods in different parts of the world

•Particular test case was flooding of Mozambique

28 © 2007-2012 Creative Arts & Technologies

Page 28: The Eclipse M2M IWG and Standards for the Internet of Things

Sensor Web | Weather Prediction data

EUMetCastReceiving facility

EUMetCastEARS-AVHRR

EARS-ATOVS

Internet

MSG

NOMADS LAADS

Data assimilationsubsystem

NOMADSadapter

LAADSadapter Access node

Computational clusters

Grid of SRIof NASU-NSAU

Visualization subsystemUMN

MapServer

Internet

OpenLayers

Meteorology subsystem

WRFSI WRF

Processing subsystem

SeaDASP, U10, V10

Users ofmonitoring system

29 © 2007-2012 Creative Arts & Technologies

Page 29: The Eclipse M2M IWG and Standards for the Internet of Things

SensorML

• Sensor modeling language is the cornerstone of all SW services

• It provides comprehensive description of sensor parameters and capabilities

• It can be used for describing different kind of sensors:– Stationary or dynamic– Remote or in-situ– Physical measurements or simulations

30 © 2007-2012 Creative Arts & Technologies

Page 30: The Eclipse M2M IWG and Standards for the Internet of Things

SensorML | Example..............<inputs> <InputList> <input name="ambiantTemperature"> <swe:Quantity definition= "urn:ogc:def:phenomenon:temperature"/> </input> <input name="atmosphericPressure"> <swe:Quantity definition= "urn:ogc:def:phenomenon:pressure"/> </input> <input name="windSpeed"> <swe:Quantity definition= "urn:ogc:def:phenomenon:windSpeed"/> </input></InputList></inputs>..............

.............<outputs> <OutputList> <output name="weatherMeasurements"> <swe:DataGroup> <swe:component name="time"> <swe:Time definition="urn:ogc:def:phenomenon:time“ uom="urn:ogc:def:unit:iso8601"/> </swe:component> <swe:component name="temperature"> <swe:Quantitydefinition="urn:ogc:def:phenomenon:temperature uom="urn:ogc:def:unit:celsius"/> </swe:component> <swe:component name="barometricPressure"> <swe:Quantity definition="urn:ogc:def:phenomenon:pressure“ uom="urn:ogc:def:unit:bar" scale="1e-3"/> </swe:component> <swe:component name="windSpeed"> <swe:Quantity definition="urn:ogc:def:phenomenon:windSpeed“ uom="urn:ogc:def:unit:meterPerSecond"/> </swe:component> </swe:DataGroup> </output> </OutputList></outputs>.............

31 © 2007-2012 Creative Arts & Technologies

Page 31: The Eclipse M2M IWG and Standards for the Internet of Things

DEMO

Sensor Examples

Page 32: The Eclipse M2M IWG and Standards for the Internet of Things

Estimated Number of Active Cellular M2M Connected Devices

2010 to 2020

Source: Machina Research, July 2011

1. New connected devices, applications and services

2. Lower system costs

3. Simplified development

4. Network operator focus and investment

M2M | Outlook

33 © 2007-2012 Creative Arts & Technologies

Key Trends

Page 33: The Eclipse M2M IWG and Standards for the Internet of Things

Transportation & Logistics Logistics

Medical &

Healthcare

Industrial &

EnergyCommunication

Infrastructure

Security & Surveillance

Public/Private Cloud Deployment Infrastructures

Internetof Things

M2M | Integrated Processes

34 © 2007-2012 Creative Arts & Technologies, Eclipse Foundation

Page 34: The Eclipse M2M IWG and Standards for the Internet of Things

Medical Services Gateway

Communication

Infrastructure

Smart

Pill

Boxes

Heartbeat

Sensor

Weight

Scales

Blood

Pressure

Medical

Smart

Services

Gateway

Near field

Blood

Sugar

Internetof Things

35 © 2007-2012 Creative Arts & Technologies, Eclipse Foundation

M2M | Vertical Market Scenarios

Page 35: The Eclipse M2M IWG and Standards for the Internet of Things

Logistic Services Gateway

Communication

Infrastructure

Handheld &

Wearable

Devices

RFID

Readers

Medical

Smart

Services

Gateway

Smart Container

Internetof Things

36 © 2007-2012 Creative Arts & Technologies, Eclipse Foundation

M2M | Vertical Market Scenarios

Page 36: The Eclipse M2M IWG and Standards for the Internet of Things

• Barrier-type bolt seal• RFID: ID-number + integrity• Bar code• Battery 1 year transmitting• 50 cycles• Range up to 50 meters• 915 MHz + 2.4 GHz• Data transmission rate 500 kbps• Storage 64 bytes

M2M | Smart ContainerRFID e-Seal Example

37 © 2005-2012 Creative Arts & Technologies, Prof. Jens Froese – TU Hamburg-Harburg

Page 37: The Eclipse M2M IWG and Standards for the Internet of Things

M2M | Smart Container (2)Long Range Tamper Signal

38 © 2005-2012 Creative Arts & Technologies, Prof. Jens Froese – TU Hamburg-Harburg

Page 38: The Eclipse M2M IWG and Standards for the Internet of Things

M2M | Smart Container (3)Technology

39 © 2004-2012 Creative Arts & Technologies, Europe Container Terminals B.V.

Page 39: The Eclipse M2M IWG and Standards for the Internet of Things

DDEDDW

Rail Term East

Barge Term.

Gate

~~~

~~~

~~~

ECTDelta Terminal

32

33

34

52 51 50 49 4756 46 45 44 43 42 41 40 39 38

64 65

71

72 48

22 23 24 2526 27 28

DDN

The dark (green) locations are equipped with SAVI-readers to identify e-sealed containers.

On the ECT premises BreezeCom operated Hand held Terminals can be used.

37

Admin

Pre-Gate

Area

Rail Term

West

~~~

~~~

~~~

M2M | Smart Container (4)Technology continued

40 © 2004-2012 Creative Arts & Technologies, Europe Container Terminals B.V.

Page 40: The Eclipse M2M IWG and Standards for the Internet of Things

41 © 2007-2012 Creative Arts & Technologies, Eclipse Foundation

M2M | Tools

Page 41: The Eclipse M2M IWG and Standards for the Internet of Things

m2m.eclipse.org

Development Tools Examples,Tutorials

Technical

documentation,Forum

Developerkits

open m2m toolsopen m2m runtimes

Embedded development target management, emulation, …

Communication protocols simulation, bandwidth estimation, …

Server API discovery, deployment, …

Embedded frameworks Device Management, ALM, …

Communication libraries m2m and industrial protocols

Server data brokers, API, …

collaborative development hub for m2m developers

consistent & extensible development tools libraries & frameworks for m2m development

Sandbox

M2M | Developer Portal

42 © 2007-2012 Creative Arts & Technologies, Eclipse Foundation

Page 42: The Eclipse M2M IWG and Standards for the Internet of Things

M2M | Sierra Wireless at CPH Airport

43 © 2007-2012 Creative Arts & Technologies

To ensure maximum safety for all passengers, Copenhagen Airport

continuously monitors local weather conditions. In addition, airport

operations regularly measures weather-related runway conditions, such

as temperature and moisture, in order to store and analyze data and relay

status and safety information to incoming flights.

Page 43: The Eclipse M2M IWG and Standards for the Internet of Things

M2M | Benefits for CPH Airport

• Reliable connectivity – ALEOS intelligence provides “always-on” and “always-aware” communications required for mobile data applications.

• Rugged form factor – Meets US Military and SAE specifications for high performance in the harshest of environmental conditions.

• Vehicle management – GPS tracking provides ability to acquire vehicle information, such as location and speed, without interruption.

• Ease of use – Quick and easy configuration and automatic system connection every time.

44 © 2007-2012 Creative Arts & Technologies

Page 44: The Eclipse M2M IWG and Standards for the Internet of Things

M2M | Benefits for CPH Airport (2)

• Immediate access – 3G cellular solution with added Wi-Fi support offers immediacy provided by real-time, two-way data transmission available anytime, and accessed from anywhere in the world.

• Device portability – Wireless AirLink MP 880W routers allow for re-deployment if runway vehicle is replaced or down for repair or upgrades.

45 © 2007-2012 Creative Arts & Technologies

Page 45: The Eclipse M2M IWG and Standards for the Internet of Things

NFC

46 © 2007-2012 Creative Arts & Technologies

Page 46: The Eclipse M2M IWG and Standards for the Internet of Things

NFC | StatsRegistered Mobile devices worldwide (Millions)

47 © 2007-2012 Creative Arts & Technologies

Page 47: The Eclipse M2M IWG and Standards for the Internet of Things

• eNFC (enhanced NFC): Fully compliant NFC technology enhanced by ISO 14443B and ISO 15693 standards on chip emulation side

• eNFC is compatible with all existing and future application using contactless technology

Reader or DeviceCommunication

Chip emulationCommunication

ISO 14443-B

ISO 15693

ISO 14443-B

ISO 15693

ISO 14443-A

Sony (Type C)

ISO 14443-A

Sony (Type C)

eNFC

NFC-2(ECMA 352)

NFC(ECMA340)

NFC | What is eNFC?

48 © 2007-2012 Creative Arts & Technologies

Page 48: The Eclipse M2M IWG and Standards for the Internet of Things

> Exchange photos

> Get your e-ticket

> Pay without cash> Redeem coupons> Get your Receipt

NFC

> Pass the gate

> Read a map from interactive billboard

NFC

NFC

49 © 2007-2012 Creative Arts & Technologies

NFC | Use Cases

Page 49: The Eclipse M2M IWG and Standards for the Internet of Things

Chiuaua Driving License: ISO 15693

Toronto Payment: ISO 14443-B & ISO 15693

Sao Paulo Transport: ISO 14443A

Singapore Transport : Felica, ISO 14443B

Paris Transport : ISO 14443B

Tokyo Transport:

FelicaTM

London Transport : ISO 14443A

San Francisco Transport: ISO 14443B

Shenzen Transport : ISO 14443B

Hong Kong Transport: FelicaTM

Seoul Transport : ISO 14443A

Japan ID Card: ISO 14443B

US Payment: ISO 14443-B & ISO 14443A

US Access Control: ISO 15693

Pakistan Passport: ISO 14443B

New Delhi Transport:FelicaTM

NFC | Where to use this technology

Dubai RTA

50 © 2007-2012 Creative Arts & Technologies

Copenhagen Public Transport, SAS Smart Pass

Page 50: The Eclipse M2M IWG and Standards for the Internet of Things

Open NFC interfaces can be classified at different levels, from very high-level interfaces that greatly simplify the usual tasks of NFC applications, to very low-level interfaces that allow fine tuning of NFC hardware parameters for example.

High Level Interfaces:• NDEF Messages• Bluetooth and Wi-Fi pairing• Read / Write to any tag• P2P• Virtual Tags

NFC | Open NFC™

51 © 2007-2012 Creative Arts & Technologies

Starting Open NFC 4.3.0, the support for Java porting for JSR-257 devices is discontinued. Older releases of the stack were fully compliant with the JSR-257 standard.

► Android Edition is currently the only one actively maintained with Java Binding!

Page 51: The Eclipse M2M IWG and Standards for the Internet of Things

Security | Possible Usage Scenarios

•Keep close control of software on a system

•Protect kiosk Computers (ATMs..) software from manipulations such as installing a key sniffer

•Strongly identify a machine and its software configuration in online banking or Pizza delivery

•Protect IP in the Cloud

52 © 2007-2012 Creative Arts & Technologies, IAIK

Page 52: The Eclipse M2M IWG and Standards for the Internet of Things

Security | To Catch A Thief

53 © 2007-2012 Creative Arts & Technologies

Page 53: The Eclipse M2M IWG and Standards for the Internet of Things

Security | Trusted Platforms

• Measure the software executed• Store data securely• Report their status

and feature a hardware TPM an advanced BIOS or chipset a set of Trusted Computing

Software

54 © 2007-2012 Creative Arts & Technologies, IAIK

Page 54: The Eclipse M2M IWG and Standards for the Internet of Things

Security | JSR - 321

55 © 2007-2012 Creative Arts & Technologies, IAIK

Page 55: The Eclipse M2M IWG and Standards for the Internet of Things

Security | TEE

• TEE provides hardware-based isolation from rich operating systems (OS) such as Android, Windows Phone, Symbian, etc.

• TEE runs on the main device chipset

• TEE has privileged access to device resources (user interface, crypto accelerators, secure elements…).

Hardware Platform

Rich OS Application Environment

Rich OS

Trusted Execution Environment

Trusted CoreEnvironment

GlobalPlatformTEEInternalAPI

TrustedFunctions

Payment Corporate

Client Applications

TrustedApplication

DRM

TrustedApplication

Payment

TrustedApplicationCorporate

HW Secure Resources

GlobalPlatformTEE Internal

TEE Kernel

API

GlobalPlatform TEE Client API

Open to malware and rooting / jailbreaking

Isolation of sensitive assets

56 © 2007-2012 Creative Arts & Technologies, Global Platform

What is a Trusted Execution Environment (TEE)?

Page 56: The Eclipse M2M IWG and Standards for the Internet of Things

13.04.2023

• EMV applications and their data shall be always stored in a secure area of a handset – in a secure element

• Secure element is a smart card chip• Currently 3 approaches:

• SIM-centric: Secure Element is (in) USIM – payment applications are stored on a USIM card

• Embedded secure element – additional smart card chip integrated in a mobile phone (e.g. Samsung NEXUS S)

• External secure element (e.g. smart card chip integrated in a Micro SD card)

• Application management ‘over-the-air’

Security | Secure Element

Page 57: The Eclipse M2M IWG and Standards for the Internet of Things

Interoperable platform for delivery of trusted personal services

High, industry-proven security Designed for the smallest silicon

hardware devices Runs Java in as little as 4 KB

RAM

Deployed on >5 billion devices Growing at 1.4 bill. Devices p. year SIM Cards, secure elements, eID,

payment services

Secure, Connected, VersatileSecurity | Java Card Technology

58 © 2011, Oracle and/or its affiliates. All Rights Reserved.

Page 58: The Eclipse M2M IWG and Standards for the Internet of Things

Security | Java Card Technology

59 © 2007-2012 Creative Arts & Technologies

Page 59: The Eclipse M2M IWG and Standards for the Internet of Things

• 2 new JSRs for Mobile and Embedded approved• JSR-360: CLDC 8

• CLDC 8 is an evolutionary update to CLDC 1.1.1 to bring the VM, Java Language, and libraries up to date with Java SE 8.

• More: http://java.net/projects/jsr360/pages/Home

• JSR-361: Java ME Embedded Profile• Update IMP(-NG) to align with state-of-the-art features and current

embedded device market requirements.• More: http://java.net/projects/jsr361/pages/Home

Embedded Standards | JSR-360, 361

60 © 2007-2012 Creative Arts & Technologies

Page 60: The Eclipse M2M IWG and Standards for the Internet of Things

Q & A

Page 61: The Eclipse M2M IWG and Standards for the Internet of Things

Eclipse – Project UOMo

http://www.eclipse.org/uomo/

Units of Measurement API

http://www.unitsofmeasurement.org

UCUM

http://www.unitsofmeasure.org

Links

Page 62: The Eclipse M2M IWG and Standards for the Internet of Things

Eclipse – M2M IWG

http://m2m.eclipse.org

Open Geospatial Consortium

http://www.opengeospatial.org

Links (2)

Page 63: The Eclipse M2M IWG and Standards for the Internet of Things

Contact

[email protected]

or

[email protected]

Twitter: @wernerkeil

Hashtag #EclipseUOMo