Service Oriented Architecture for Monitoring Cargo in Motion Along Trusted Corridors

Size: px
Start display at page:

Download "Service Oriented Architecture for Monitoring Cargo in Motion Along Trusted Corridors"

Transcription

1 Service Oriented Architecture for Monitoring Cargo in Motion Along Trusted Corridors Martin Kuehnhausen Department of Electrical Engineering & Computer Science Master's Thesis Defense July 1, 2009 Committee Dr. Victor S. Frost (Chair) Dr. Joseph B. Evans Dr. Gary J. Minden A KTEC Center of Excellence 1

2 Acknowledgment Defense Committee Dr. Victor S. Frost Dr. Joseph B. Evans Dr. Gary J. Minden SensorNet Team Leon Searl, Ed Komp, Dan DePardo, Daniel Deavours Daniel Fokum, Matt Zeets, Angela Oguna, Jim Stevens, George Cox A KTEC Center of Excellence 2

3 Outline Introduction Statement of Problem Service Oriented Architecture Design & Architecture of TSSN Service implementations Implementation Results Conclusion Future Work A KTEC Center of Excellence 3

4 Introduction Transportation Security SensorNet project Service Oriented Architecture Open Geospatial Consortium Sensor Networks Main goals Remote sensor management Alarm notification Use of open standards, tools and software Combination of SOA, OGC and sensor networks A KTEC Center of Excellence 4

5 Statement of Problem How can a Service Oriented Architecture, open standards and specifications be used to overcome the problems of proprietary systems that are currently in place and provide a reusable framework that can be implemented across the entire transportation industry? A KTEC Center of Excellence 5

6 Service Oriented Architecture Concept: Information processing and sharing across various applications using so-called web services Components are web services Clients utilize web services through clearly defined open web standards interfaces Standard protocols for communication Independent of technologies, platforms, programming languages Interfaces follow web service standards A KTEC Center of Excellence 6

7 Service Overview Service Client Docs Data A Process A Process B Data B Interface A Interface B Interface C Interface D Client Client Client A KTEC Center of Excellence 7

8 Benefits for TSSN Related to the transportation industry: Automation Efficient communication Efficient development through modularity More reuse of the system Simplified maintenance Incremental adoption Graceful evolution A KTEC Center of Excellence 8

9 Web Service Specifications SOAP Flexible message format WS-Addressing Message propagation Routing WS-Eventing Event subscriptions and publications WS-Security Encryption Signatures Envelope Header Body Fault SOAP message format A KTEC Center of Excellence 9

10 Web Service Specifications UDDI Universal Description, Discovery and Integration Service Discovery Scalability WSDL 2.0 Web Service Description Language Elements, operations, interface and binding definitions WSDL 2.0 overview A KTEC Center of Excellence 10

11 Design & Architecture Transportation Security SensorNet Based on Service Oriented Architecture Utilize web services and Open Geospatial Consortium specifications Combine web services with sensor network technology Provide: Service Oriented Architecture for cargo monitoring Remote sensor management Event processing Alarm notifications A KTEC Center of Excellence 11

12 Design & Architecture Distributed service clouds Trade Data Exchange Virtual Network Operation Center Mobile Rail Network Service clouds A KTEC Center of Excellence 12

13 Apache Axis2 Basis for TSSN Provides basis for web services and clients Supports variety of transports (HTTP, HTTPS, JMS, etc.) Allows several data bindings (Axis Data Binding (ADB), XMLBeans, JibX, etc.) Modular approach to web service specifications Axis2 module architecture from [16] A KTEC Center of Excellence 13

14 Service composition WSDL Service XML Schema WSDL2Java External XML Schemas Service Java Classes Schema Elements Service Skeleton Data A External library A External Service Stub A External Service Stub B Data B External library B Service Implementation Service A KTEC Center of Excellence 14

15 Automatic Code Generation Axis2 provides tools for: XML schema compilations -> data bindings Java service classes generation from WSDL Use of Apache Ant as a build system Improvements to standard implementation Schema compilation of OGC schema elements Ping module Logging module Subscriptions/Publications mechanism Build process A KTEC Center of Excellence 15

16 Components Services Long term storage (MySQL database & Hibernate) Event processing (Esper) Sensor management (Hi-G-Tek (HGT)) Location tracking (GPS) Stateless vs. stateful web services Clients Standalone & embedded in a service User interfaces (Apache CLI & Command Center GUI) Modules Ping, Logging Web service specifications (Addressing, Savan, Rampart) A KTEC Center of Excellence 16

17 Service message overview A KTEC Center of Excellence 17

18 Mobile Rail Network Located on train Responsibilities Sensor management Sensor monitoring Propagation of sensor events Mobile Rail Network message overview A KTEC Center of Excellence 18

19 MRN Sensor Node Abstraction layer to dealing with HGT, GPS and other sensors Provides Sensor monitoring Sensor control Location retrieval OGC specifications GetCapabilities and GetObservation (SOS) Mobile Rail Network Sensor Node A KTEC Center of Excellence 19

20 MRN Alarm Processor Processes events that it receives from Sensor Node Provides Initial event processing Monitoring state control Security vs. information Alarm notifications Mobile Rail Network Alarm Processor A KTEC Center of Excellence 20

21 Virtual Network Operation Center Located at KU Management facility of TSSN Responsibilities Sensor management Complex event processing Interfacing with trade information Alarm notifications Virtual Network Operation Center message overview A KTEC Center of Excellence 21

22 VNOC Sensor Management Remote sensor management via message relay Provides Sensor control Monitoring control Location retrieval Virtual Network Operation Center Sensor Management A KTEC Center of Excellence 22

23 VNOC Alarm Processor Processes events that it receives from MRNs Provides Complex event processing using Esper Correlation of trade information with events Alarm notifications Virtual Network Operation Center Alarm Processor A KTEC Center of Excellence 23

24 VNOC Alarm Reporting Sends alarm notifications using and/or SMS Provides Alarm to contact mappings management Alarm history Alarm notifications Virtual Network Operation Center Alarm Reporting A KTEC Center of Excellence 24

25 Trade Data Exchange Located in Overland Park, KS Interface to transport systems Responsibilities Providing trade data and other information Trade Data Exchange message overview A KTEC Center of Excellence 25

26 TDE Trade Data Exchange Supplies Alarm Processor with trade information Provides Alarm storage Shipment information Trade Data Exchange Service A KTEC Center of Excellence 26

27 Implementation Results Several tools used during trials and analysis Logging module Capture message flows Log parser Reconstructs messages Provides listing and analysis functionality SOAP message (left) to Log parser classes (right) comparison A KTEC Center of Excellence 27

28 Visual SensorNet A KTEC Center of Excellence 28

29 Message Relationships Transmit-Receive Pair Combination of outgoing and incoming messages with the same message id Allows computation of Transmit times Message Couple Combination of outgoing request and outgoing response Allows computation of Round trip times Processing times Two transmit-receive pairs (red and green) A message couple (red) A KTEC Center of Excellence 29

30 Trial results Road tests with trucks MRN deployed on a truck Sensor read range about 400 meters Temporary GSM and GPS loss All messages (sensor management and alarms) successfully sent and received Short Haul Rail Trial MRN deployed on a locomotive Train traveled approximately 35 kilometers from a rail intermodal facility to a rail yard Similar GSM and GPS issues A KTEC Center of Excellence 30

31 Short Haul Rail Trial Message counts 546 alerts at the MRN 131 alarms at the VNOC 63 Shipment information inquiries at the TDE 30 location retrievals Message sizes Control messages such as getlocation, startmonitoring, etc. on average 690 bytes Alarms from the MRN around 1420 bytes A KTEC Center of Excellence 31

32 Request Performance Sensor Management to Sensor Node or Alarm Processor Fastest: 0.9 seconds Slowest: 11 seconds Average: 4.4 seconds Bottleneck: network Processing on average only 0.6 seconds 85% spent on message transmission Request performance from [31] Network transmission and processing performance from [31] A KTEC Center of Excellence 32

33 Alarm Notification Performance Time going through entire TSSN Fastest: 1.9 seconds Slowest: 4.9 seconds Average: 2.1 seconds Problem Clock drift on the MRN Solution Approximation using request transmit times System alarm notification performance from [31] A KTEC Center of Excellence 33

34 Conclusion Implementation works Trials successful Performance evaluated Transportation Security SensorNet Sensor management and alarm notification infrastructure Built using open standards and specifications Integration with OGC standards Demonstrates combination of SOA, OGC and sensor networks A KTEC Center of Excellence 34

35 Future Work Clock synchronization NTP over GPS integrated into Sensor Node Service discovery Basic framework in place, bug fixing needed Multiple service clouds Most of the services already support this Security Policy based security for subscriptions in development Asynchronous communication JMS transport implemented for clients and services Deployment using ActiveMQ currently being tested A KTEC Center of Excellence 35

36 Thank you for coming today. Any questions? A KTEC Center of Excellence 36

Smart Sensing and Tracking with Video and Mote Sensor Collaboration

Smart Sensing and Tracking with Video and Mote Sensor Collaboration Smart Sensing and Tracking with Video and Mote Sensor Collaboration Sadiye Guler Founder, intuvision, Inc. www.intuvisiontech.com Timothy Cole Northrop Grumman IT This work is partially supported by DHS

More information

KELTRON LS 7000 ALARM MANAGEMENT SYSTEM Keltron Alarm Monitoring, Dispatch, and Reporting Software

KELTRON LS 7000 ALARM MANAGEMENT SYSTEM Keltron Alarm Monitoring, Dispatch, and Reporting Software KELTRON LS 7000 ALARM MANAGEMENT SYSTEM Keltron Alarm Monitoring, Dispatch, and Reporting Software OVERVIEW The Keltron LS 7000 Alarm Management System software and computers make up the dispatch portion

More information

Wireless Sensor Network Based Bank Monitoring System Using LabVIEW

Wireless Sensor Network Based Bank Monitoring System Using LabVIEW Proceedings of the 2015 International Conference on Industrial Engineering and Operations Management Dubai, United Arab Emirates (UAE), March 3 5, 2015 Wireless Sensor Network Based Bank Monitoring System

More information

Web Services are based on Apache and Tomcat servers. The html/jsp (tags, beans) are fully customisable and extendable.

Web Services are based on Apache and Tomcat servers. The html/jsp (tags, beans) are fully customisable and extendable. New thinking Sentus Automation is able to control and manipulate data at ease whilst delivering a low cost per point return. XML interface: Information can be exported/viewed by an unlimited number of

More information

Monitoring. Catalog Data Input Processing M2M Transfer SW Applications.

Monitoring. Catalog Data Input Processing M2M Transfer SW Applications. Monitoring Catalog 0 Data Input Processing MM Transfer SW Applications Data Input Processing MM Transfer SW Apps HW group s. r. o. is a Czech manufacturer of monitoring and remote control solutions. We

More information

Monitoring. Catalog Data Input Processing M2M Transfer SW Applications.

Monitoring. Catalog Data Input Processing M2M Transfer SW Applications. Monitoring Catalog 017 Data Input Processing MM Transfer SW Applications www.hw-group.com HW group s. r. o. is a Czech manufacturer of monitoring and remote control solutions. We deliver top quality products

More information

ESB Tools Reference Guide. Version: CR2

ESB Tools Reference Guide. Version: CR2 ESB Tools Reference Guide Version: 1.1.0.CR2 1. Introduction... 1 1.1. What is ESB?... 1 1.2. Other relevant resources on the topic... 1 2. ESB Support... 3 2.1. ESB Tools Installation... 3 2.2. Creating

More information

MONITORING. Software. M2M Transfer. Data Input. Processing. Reports Graphs, Excel Alarms. Logging Analysis, Alarms Various products

MONITORING. Software. M2M Transfer. Data Input. Processing. Reports Graphs, Excel Alarms. Logging Analysis, Alarms Various products MONITORING Measurement Sensors Dry contacts Logging Analysis, Alarms Various products XML/HTTP SNMP, E-mail GPRS/SMS Reports Graphs, Excel Alarms www.hw-group.com Measurement, Sensors Temperature Humidity

More information

Design and Development of General Purpose Alarm Generator for Automated System

Design and Development of General Purpose Alarm Generator for Automated System Design and Development of General Purpose Alarm Generator for Automated System Amit Pandey 1 1 CSIR-Central Scientific Instruments Organisation India Abstract: This paper presents a model for general purpose

More information

A Smart & Integrated Security solution

A Smart & Integrated Security solution Advisor Advanced A Smart & Integrated Security solution In a connected world Empowered with UltraSync services Security and Access Control in one providing a scalable system UTC s Advisor Advanced security

More information

Alarm setup and definitions in Cisco Unified Serviceability

Alarm setup and definitions in Cisco Unified Serviceability Alarm setup and definitions in Cisco Unified Serviceability Set up Cisco Unified IM and Presence Serviceability alarms, page 1 Alarm setup and update for a service, page 2 Alarm definitions and user-defined

More information

ESB Tools Reference Guide. Version: GA

ESB Tools Reference Guide. Version: GA ESB Tools Reference Guide Version: 1.1.0.GA 1. Introduction... 1 1.1. What is ESB?... 1 1.2. Other relevant resources on the topic... 1 2. ESB Support... 3 2.1. ESB Tools Installation... 3 2.2. Creating

More information

D3 Wireless temperature alarm & monitoring system family. tek-troniks

D3 Wireless temperature alarm & monitoring system family. tek-troniks D3 Wireless temperature alarm & monitoring system family tek-troniks D3 Wireless temperature alarm & monitoring system family No server or dedicated pc No ongoing cloud costs or licencing fees. Fully web

More information

Design and Implementation of a Real Time Wireless Monitor System for Urinary Incontinence

Design and Implementation of a Real Time Wireless Monitor System for Urinary Incontinence Int. J. Communications, Network and System Sciences, 2017, 10, 252-263 http://www.scirp.org/journal/ijcns ISSN Online: 1913-3723 ISSN Print: 1913-3715 Design and Implementation of a Real Time Wireless

More information

RLDS - Remote LEAK DETECTION SYSTEM

RLDS - Remote LEAK DETECTION SYSTEM RLDS - Remote LEAK DETECTION SYSTEM Asel-Tech has spent considerable time and resources over the past 8 years to improve our technology, to the point where it is unparalleled in reliability and performance

More information

New Features in Neuron ESB 3.0

New Features in Neuron ESB 3.0 New Features in Neuron ESB 3.0 The release of Neuron ESB 3.0 continues the trend of productivity and innovation for the Microsoft Platform. Neuron ESB 3.0 has been extended to support the Microsoft.NET

More information

Hardware and Software Requirements

Hardware and Software Requirements Oracle Retail Xstore Suite Release Notes Release 16.0.0.1 E86009-01 March 2017 This document highlights the major changes for the 16.0.0.1 bundled hot fix of Oracle Retail Xstore Suite. Overview Oracle

More information

Oracle Retail Cloud Services and Business Agility

Oracle Retail Cloud Services and Business Agility Oracle Retail Integration Cloud Service Release Notes Release 16.0 E86014-01 March 2017 This document introduces Oracle Retail Integration Cloud Service 16.0. Overview The Oracle Retail Integration Cloud

More information

AmpLight Lighting Management System

AmpLight Lighting Management System AmpLight Lighting Management System Centralized Streetlight Control Centralized Streetlight Control The AmpLight solution is a complete web-based solution with advanced communication and easy integration

More information

WIRELESS CONTROLLABLE DEUS LLC

WIRELESS CONTROLLABLE DEUS LLC WIRELESS CONTROLLABLE L I G H T I N G S Y S T E M DEUS LLC TECHNOLOGY AND INTELLECTUAL PROPERTY POWER SUPPLY MANUFACTURER FIXTURE MANUFACTURER LIGHTING SYSTEM DISTRIBUTOR LIGHTING SYSTEM PROJECT ORGANIZATION

More information

Enterprise Service Bus

Enterprise Service Bus Enterprise Service Bus Suva Uses WSO2 ESB to Manage 100-Plus Web Services Internally and Across Customers, Government Agencies, and Other Third Parties As Switzerland s leading provider of federal insurance

More information

DEVELOPMENT OF THE TANGO ALARM SYSTEM

DEVELOPMENT OF THE TANGO ALARM SYSTEM 10th ICALEPCS Int. Conf. on Accelerator & Large Expt. Physics Control Systems. Geneva, 10-14 Oct 2005, WE3B.1-70 (2005) DEVELOPMENT OF THE TANGO ALARM SYSTEM L. Pivetta Sincrotrone Trieste, Trieste, Italy

More information

The WAVE Plus Instant Notification System for Schools and Colleges

The WAVE Plus Instant Notification System for Schools and Colleges Instant Notification System for Schools and Colleges Duress alarm has been activated in the School of Engineering! Schools strive to provide a safe environment for students and teachers. In an emergency,

More information

ENACTMENT OF SCADA SYSTEM FOR JUDICIOUS DWELLING

ENACTMENT OF SCADA SYSTEM FOR JUDICIOUS DWELLING Int. J. Engg. Res. & Sci. & Tech. 2014 Mohammed Tabrez Ud Doula and G Kalaimagal, 2014 Research Paper ISSN 2319-5991 www.ijerst.com Vol. 3, No. 2, May 2014 2014 IJERST. All Rights Reserved ENACTMENT OF

More information

Evolving Broadcast Operations With ESB

Evolving Broadcast Operations With ESB Evolving Broadcast Operations With ESB Chris Contakes, Vice President IT, PBS Sylvain Nazef, Sr. Enterprise Architect, PBS Bryan Boggio, Sr. Director, Media Systems, PBS Joy Wang, Director Software Development,

More information

ARGUS SERVER SYSTEM. Inspired Systems Pty Ltd 70 Mordaunt Circuit, Canning Vale, Western Australia Ph Fax

ARGUS SERVER SYSTEM. Inspired Systems Pty Ltd 70 Mordaunt Circuit, Canning Vale, Western Australia Ph Fax ARGUS SERVER SYSTEM Inspired Systems Pty Ltd 70 Mordaunt Circuit, Canning Vale, Western Australia Ph +618 94565666 Fax +61 8 94565778 ARGUS ARGUS SERVER SYSTEM Overview of Argus ARGUS is an essential,

More information

FALCON EYE Land Based Surveillance System

FALCON EYE Land Based Surveillance System Land Based Surveillance System SpecOps Group is a global technology innovation leader in security systems and autonomous border protection platforms. SpecOps Group provides a unique autonomous situational

More information

GMS GRAPHICAL MANAGEMENT SYSTEM

GMS GRAPHICAL MANAGEMENT SYSTEM GMS GRAPHICAL MANAGEMENT SYSTEM 1 GMS Security management system for multi-site organizations. PACOM Graphical Management System (GMS) is the modular client-server application that integrates all of PACOM

More information

Flood Monitoring and Early Warning System Using Ultrasonic Sensor

Flood Monitoring and Early Warning System Using Ultrasonic Sensor IOP Conference Series: Materials Science and Engineering PAPER OPEN ACCESS Flood Monitoring and Early Warning System Using Ultrasonic Sensor To cite this article: J G Natividad and J M Mendez 2018 IOP

More information

Smart Sensor in Wide Area Network Environment How can sensors improve your safety? Tadeusz Pietraszek

Smart Sensor in Wide Area Network Environment How can sensors improve your safety? Tadeusz Pietraszek Smart Sensor in Wide Area Network Environment How can sensors improve your safety? Tadeusz Pietraszek April 25, 2003 To feel more is to know more Outline ntroduction Need for monitoring system ssues of

More information

Room Temperature Control and Fire Alarm/Suppression IoT Service Using MQTT on AWS

Room Temperature Control and Fire Alarm/Suppression IoT Service Using MQTT on AWS Room Control and Fire Alarm/Suppression IoT Service Using MQTT on AWS Do-Hun Kang, Min-Sung Park, Hyoung-Sub Kim, Da-young Kim, Sang-Hui Kim, Hyeon-Ju Son, * Sang-Gon Lee Dong-Seo University, Korea, {kadihi@naver.com,

More information

Lesson 11 Internet Connected Environment (Weather, Air Pollution and Forest Fire) Monitoring

Lesson 11 Internet Connected Environment (Weather, Air Pollution and Forest Fire) Monitoring Lesson 11 Internet Connected Environment (Weather, Air Pollution and Forest Fire) Monitoring 1 Environment Monitoring Weather Uses of sensors for T, RH and Patm parameters, WSNs, access points, gateways

More information

BMS Specification. Lonix Ltd.

BMS Specification. Lonix Ltd. BMS Specification 1 (18) BMS Specification Lonix Ltd www.lonix.com BMS Specification 2 (18) INDEX 1 System Architecture...3 1.1 System Integration...3 1.2 Layered System Architecture...3 1.2.1 Service

More information

Using ANM Mobile CHAPTER

Using ANM Mobile CHAPTER CHAPTER 19 Date: 3/22/13 This chapter describes Cisco ANM Mobile, which allows you to access your ANM server or ANM Virtual Appliance and manage your devices using a mobile device such as an iphone or

More information

This is your cloud. Paris OpenStack Summit

This is your cloud. Paris OpenStack Summit Paris OpenStack Summit This is your cloud. Monasca Deep Dive Monitoring-as-a-Service (at Scale) Roland Hochmuth, Sandy Walsh, Tong Li/ November 5, 2014 Agenda Problem Statement What is Monasca? Architecture

More information

Session VI Smart safety systems

Session VI Smart safety systems Session VI Smart safety systems September 09th, 2016 Kolkata Denzil D Enterprise security Building Technologies Siemens Ltd Siemens AG 2011. All rights reserved. Safety every where Hospital Office Residential

More information

Affordable wireless monitoring without compromise

Affordable wireless monitoring without compromise Affordable wireless monitoring without compromise %RH Pa CO 2 Temperature Humidity Door Events Airflow Differential pressure Carbon dioxide www.the-imcgroup.com Notion Pro - Affordability without compromise

More information

TD flex is an award-winning tailgate detection solution that prevents unauthorized access at: Doors Turnstiles Transfer gates Mantraps Airlocks

TD flex is an award-winning tailgate detection solution that prevents unauthorized access at: Doors Turnstiles Transfer gates Mantraps Airlocks Tailgate Detector TD TDflex is an award-winning tailgate detection solution that prevents unauthorized access at: Doors Turnstiles Transfer gates Mantraps Airlocks Tailgate Detector - TD The Essential

More information

PSM CONTROL & MANAGEMENT PRODUCT CATALOGUE. GAMATRONIC, A SolarEdge Division. 17 Hartom Street, Jerusalem , Israel

PSM CONTROL & MANAGEMENT PRODUCT CATALOGUE. GAMATRONIC, A SolarEdge Division. 17 Hartom Street, Jerusalem , Israel PSM CONTROL & MANAGEMENT PRODUCT CATALOGUE GAMATRONIC, A SolarEdge Division 17 Hartom Street, Jerusalem 9777517, Israel 1-800-20-70-90 Tel: +972-2-5888277 Fax: +972-2-5710663 SalesIL.Gama@solaredge.com

More information

EnergyMaster. ENEC Monitoring System. An on-site supervision and remote monitoring solution

EnergyMaster. ENEC Monitoring System. An on-site supervision and remote monitoring solution EnergyMaster ENEC Monitoring System An on-site supervision and remote monitoring solution ENERGYMASTER ENEC MONITORING SYSTEMS AN ON-SITE SUPERVISION AND REMOTE MONITORING SOLUTION Take Control of Your

More information

IRIS Touch Firmware Enhancements and Additions from Version to Version

IRIS Touch Firmware Enhancements and Additions from Version to Version Overview IRIS Touch Firmware Enhancements and Additions from Version 1.14.3 to Version 1.19.1 This document details enhancements to the feature set of the IRIS Touch from firmware Version 1.14.3 to Version

More information

VISEUM UK PRESENTATION

VISEUM UK PRESENTATION VISEUM UK PRESENTATION AN INTERACTIVE PRESENTATION WITH MANY REFERENCES AND LINKS TO: FIELD INSTALLATIONS, PUBLIC BODY ENDORSEMENTS, VIDEO DEMONSTRATIONS, PRODUCT SOLUTION DATA SHEETS, NEXT BEST COMPARABLE

More information

Affordable wireless monitoring without compromise

Affordable wireless monitoring without compromise Affordable wireless monitoring without compromise Pa CO 2 Temperature Humidity Door Events Airflow Differential pressure Carbon dioxide Notion Pro - Affordability without compromise Notion Pro delivers

More information

SC-F3G User Manual 1.0

SC-F3G User Manual 1.0 SC-F3G User Manual 1.0 Table of Contents 1. Introduction... 3 2. Functions... 3 3. Features... 3 4. Package Contents... 3 5. Device Configuration... 4 6. Status LED signals... 5 7. Before You Start...

More information

Cold chain monitoring technologies. Facility monitoring

Cold chain monitoring technologies. Facility monitoring Cold chain monitoring technologies Facility monitoring Advanced wireless data logging system - Cobalt For various controlled environment facilities, equipments and transport conditions, real time monitoring

More information

BlackBerry AtHoc Networked Crisis Communication Siemens Indoor Fire Panel Installation and Configuration Guide Release Version 7.

BlackBerry AtHoc Networked Crisis Communication Siemens Indoor Fire Panel Installation and Configuration Guide Release Version 7. BlackBerry AtHoc Networked Crisis Communication Siemens Indoor Fire Panel Installation and Configuration Guide Release Version 7.3, October 2017 Copyright 2017 BlackBerry Limited. All Rights Reserved.

More information

TD flex is an award-winning tailgate detection solution that prevents unauthorized access at: Doors Turnstiles Transfer gates Mantraps Airlocks

TD flex is an award-winning tailgate detection solution that prevents unauthorized access at: Doors Turnstiles Transfer gates Mantraps Airlocks Tailgate Detector TDflex is an award-winning tailgate detection solution that prevents unauthorized access at: Doors Turnstiles Transfer gates Mantraps Airlocks Tailgate Detector - The Essential Security

More information

Perimeter Product Overview. Effective protection for your business

Perimeter Product Overview. Effective protection for your business Perimeter Product Overview Effective protection for your business The Gallagher difference Our innovation is driven by the desire to solve problems, meet your needs and provide real business value. We

More information

Design of Intelligent Alarm System Based on GSM Network Shun Qing XU

Design of Intelligent Alarm System Based on GSM Network Shun Qing XU Applied Mechanics and Materials Online: 2013-08-30 ISSN: 1662-7482, Vols. 373-375, pp 1578-1582 doi:10.4028/www.scientific.net/amm.373-375.1578 2013 Trans Tech Publications, Switzerland Design of Intelligent

More information

Public Services. NewVoice. San Francisco Paris Geneva Zurich Linz Mainz Shanghai Brisbane Hong Kong São Paulo Dubai

Public Services. NewVoice. San Francisco Paris Geneva Zurich Linz Mainz Shanghai Brisbane Hong Kong São Paulo Dubai Public Services NewVoice San Francisco Paris Geneva Zurich Linz Mainz Shanghai Brisbane Hong Kong São Paulo Dubai Public Services - Mobile applications for smart phones - Emergency Call 911 - Municipality

More information

Virtual Boundary System Using Passive Infrared Sensor

Virtual Boundary System Using Passive Infrared Sensor International Journal of Education and Science Research Review E-ISSN 2348-6457 Volume-3, Issue-2 April- 2016 Virtual Boundary System Using Passive Infrared Sensor Saptarshi Gupta Assistant Professor SRM

More information

Construction of Wireless Fire Alarm System Based on ZigBee Technology

Construction of Wireless Fire Alarm System Based on ZigBee Technology Available online at www.sciencedirect.com Procedia Engineering 11 (2011) 308 313 The 5 th Conference on Performance-based Fire and Fire Protection Engineering Construction of Wireless Fire Alarm System

More information

Rosenberger Intergrated Operation and Maintenance Center for all repeaters(2g/3g/lte) following CMCC and TMN specification.

Rosenberger Intergrated Operation and Maintenance Center for all repeaters(2g/3g/lte) following CMCC and TMN specification. Rosenberger Intergrated Operation and Maintenance Center for all repeaters(2g/3g/lte) following CMCC and TMN specification. Main Features The topology relationship of all repeater is shown by the domain

More information

Architectures for LonWorks Home Automation Systems Luca Coppadoro Echelon

Architectures for LonWorks Home Automation Systems Luca Coppadoro Echelon Architectures for LonWorks Home Automation Systems Luca Coppadoro Echelon 04H1122 size Home Automation Market 2001 years 2 2006? TODAY TIME 2002 2003 2004 New Landscape 3 LONWORKS is now accepted as an

More information

X.90 Access Control System

X.90 Access Control System X.90 Access Control System ACX provides a comprehensive Access Control System and Time Attendance, which is the highest security standard in the world industry. ACX product range includes door access panel,

More information

Health Care. NewVoice. San Francisco Paris Geneva Zurich Linz Mainz Shanghai Brisbane Hong Kong São Paulo Dubai

Health Care. NewVoice. San Francisco Paris Geneva Zurich Linz Mainz Shanghai Brisbane Hong Kong São Paulo Dubai Health Care Emergency & Medical Services Nurse Call Heart Alarm Emergency Hotline Skill Based Mobilization Emergency Conference Bed Transportation MobiCall Health Care Security & Infrastructure MobiCall

More information

Continuous, real-time detection, alarming and analysis of partial discharge events

Continuous, real-time detection, alarming and analysis of partial discharge events DMS PDMG-R Partial discharge monitor for EHV GIS Continuous, real-time detection, alarming and analysis of partial discharge events Automatic PD fault classification Robust design allows for reliable operation

More information

Duos Technologies. Intelligent Railcar Inspection Portal rip. Arco de inspección

Duos Technologies. Intelligent Railcar Inspection Portal rip. Arco de inspección Duos Technologies Intelligent Railcar Inspection Portal rip Arco de inspección Railcar Inspection Practices Inspection practices require an inspector to visually inspect the mechanical components on both

More information

How the People Counter Works. Enhanced Safety, Security and Building Automation, and Improved Marketing Intelligence. 3D MLI Sensor Technology

How the People Counter Works. Enhanced Safety, Security and Building Automation, and Improved Marketing Intelligence. 3D MLI Sensor Technology People Counter A high-accuracy people counting solution that: Performs a bi-directional count at each entrance and exit Offers >99% accuracy Runs on embedded software Is based on 3D MLI Sensor technology

More information

Wireless M2M Solutions

Wireless M2M Solutions Wireless M2M Solutions By Edge Power Wireless M2M Solution -Table of Contents Introduction M2M market Position on M2M market M2M Solution (by Edge Power) Deployments in Hong Kong System solution Current

More information

Access Control for. Part 3 of 4. Brought to You by. Presented by Video Security Consultants

Access Control for. Part 3 of 4. Brought to You by. Presented by Video Security Consultants 2008 Video Security Consultants Brought to You by Presented by Part 3 of 4 A1 Part 3 of 4 Taking a Hard Look at Software The essential function of an electronic access control system (EACS) is to control

More information

EC-BOS-602/616 AX Security

EC-BOS-602/616 AX Security D a t a s h e e t EC-BOS-602/616 AX Security Comprehensive, easy-to-use Access Control management solution Overview The heart of EC-Net AX Security is the EC- BOS-602/616 AX Security, an advanced IP-based

More information

Configuration Guide Contigo 1-Wire Temperature Sensor

Configuration Guide Contigo 1-Wire Temperature Sensor Temperature Monitoring The latest Contigo beacon models include support for connection to a Temperature Sensor which supports the 1-Wire communications protocol. Fleet Managers now have the ability to

More information

Gallagher Perimeter Product Overview

Gallagher Perimeter Product Overview Gallagher Perimeter Product Overview 1 security.gallagher.com Gallagher is a global leader in the innovation, manufacture and delivery of security solutions. Meeting our customers needs inspires us to

More information

Building Automation Systems from Grantek: Going Beyond Compliance to Improve Operations

Building Automation Systems from Grantek: Going Beyond Compliance to Improve Operations Building Automation Systems from Grantek: Going Beyond Compliance to Improve Operations WWW.GRANTEK.COM 1 Overview Building automation systems (BAS) are necessary and ubiquitous in today s smart manufacturing

More information

University. NewVoice. San Francisco Paris Geneva Zurich Linz Mainz Shanghai Brisbane Hong Kong São Paulo Dubai

University. NewVoice. San Francisco Paris Geneva Zurich Linz Mainz Shanghai Brisbane Hong Kong São Paulo Dubai University Case Study University - Message Broadcast Powerful messaging scenarios to persons and groups, voice and text, dynamic and predefined. Messaging can be triggered via phone or web. With or without

More information

Process alarm. Deliver messag e. Alarm event. Feedbac k. Process feedback

Process alarm. Deliver messag e. Alarm event. Feedbac k. Process feedback Messenger@Net Messenger@Net Messenger@Net is a PC based middleware that delivers real-time alerting of significant enterprise events from virtually any input source to virtually any remote notification

More information

ONYXWORKS AND FIRSTVISION. Version 4

ONYXWORKS AND FIRSTVISION. Version 4 ONYXWORKS AND FIRSTVISION Version 4 Version 4: Next Generation CONNECTED SOLUTIONS ONYXWorks FirstVision 2 ONYXWORKS Version 4 New to ONYXWorks v4.30 Look Ahead Test Monitoring Configuration Tool Display

More information

Compact Product Suite Compact HMI 6.0 Overview ABB

Compact Product Suite Compact HMI 6.0 Overview ABB Compact Product Suite Compact HMI 6.0 Overview ABB 2 OVERVIEW COMPACT HMI VERSION 6.0 Compact HMI A feature-rich human-machine interface Another feature is the high performance prefabricated, reusable

More information

Service Oriented Framework for Industrial Automation Systems

Service Oriented Framework for Industrial Automation Systems Available online at www.sciencedirect.com Procedia Engineering 41 (2012 ) 716 723 International Symposium on Robotics and Intelligent Sensors 2012 (IRIS 2012) Service Oriented Framework for Industrial

More information

YOUR SCHOOL STAFF NEEDS PROTECTION

YOUR SCHOOL STAFF NEEDS PROTECTION YOUR SCHOOL STAFF NEEDS PROTECTION Threats and assaults on school staff and students are on the rise. They deserve protection. But what is an effective means to notify security personnel and school officials

More information

Vykon. Security. Integrated Access Control. Web enabled security management built on the Niagara Framework

Vykon. Security. Integrated Access Control. Web enabled security management built on the Niagara Framework Vykon Security Integrated Access Control Web enabled security management built on the Niagara Framework Niagara for Security Applications Integrating security within building automation systems brings

More information

MobiCall-Client PC Safety at work

MobiCall-Client PC Safety at work MobiCall-Client PC Safety at work MobiCall Client PC offers efficient personal security measures for staff members with PC workstations in threatening situations, as well as a quick alarm transmission

More information

Automobile Security System Based on Face Recognition Structure Using GSM Network

Automobile Security System Based on Face Recognition Structure Using GSM Network Advance in Electronic and Electric Engineering. ISSN 2231-1297, Volume 3, Number 6 (2013), pp. 733-738 Research India Publications http://www.ripublication.com/aeee.htm Automobile Security System Based

More information

HOME AUTOMATION BASED PROJECTS

HOME AUTOMATION BASED PROJECTS ************************************************************************ INNOVATIVE & APPLICATION ORIENTED PROJECTS ON SVSEMBEDDED SYSTEMS (8051/AVR/ARM7/MSP430/RENESAS/ARM cortex M3) ************************************************************************

More information

PROJECT PRESENTATION AND DEMO BY CEO CFO CMO VP OPERATIONS

PROJECT PRESENTATION AND DEMO BY CEO CFO CMO VP OPERATIONS R E A L - T I M E A I R Q U A L I T Y M U LT I M O N I T O R PROJECT PRESENTATION AND DEMO BY ROUZBEH ROSHANRAVAN MARVIN LEE TESSA RYAN SAMUEL TO CEO CFO CMO VP OPERATIONS April 22 2013 OUTLINE 1. Motivation

More information

PcVue Solutions. PcVue Solutions

PcVue Solutions. PcVue Solutions PcVue Solutions PcVue Solutions Corporate company profile The Independent Global The Independent SCADA Global provider SCADA Global in figures The 30 Years of experience in SCADA 10 Language versions of

More information

Automatic Fire Alarm Service Provider Computer Interface Specification for Extended Alarm Protocol (XAP) Devices

Automatic Fire Alarm Service Provider Computer Interface Specification for Extended Alarm Protocol (XAP) Devices July 2017 Version 1.6 Automatic Fire Alarm Service Provider Computer Interface Specification for Extended Alarm Protocol (XAP) Devices For Fire and Emergency New Zealand December 2013 Table of contents

More information

Remote fiber testing to improve SLA s

Remote fiber testing to improve SLA s Remote fiber testing to improve SLA s Presented by : Kamel SOUILAH System Sales Engineer kamel.souilah@exfo.com 2010 EXFO Inc. All rights reserved.. 1 EXFO is the leader in the test and measurement solutions

More information

Implementing the OGC Sensor Web Enablement Standards for Marine Applications

Implementing the OGC Sensor Web Enablement Standards for Marine Applications Implementing the OGC Sensor Web Enablement Standards for Marine Applications ROBEX Sensor Workshop, Vienna, 27 th April 2017 Simon Jirka, 52 North GmbH, jirka@52north.org Motivation Existing earth observation

More information

CORAL MANTA User Guide

CORAL MANTA User Guide CORAL MANTA User Guide Copyright 208 Coral Detection Systems, all rights reserved. Rev B Doc P/N: xxxx 2. Contact Information For help with this device, please contact Coral Detection Systems at: Website

More information

Click to edit Master title style

Click to edit Master title style SKA SYNCHRONIZATION AND TIMING LOCAL MONITOR AND CONTROL - Software Design Approach October 12 th 2017 Rajesh Warange (NCRA-TIFR) Ralph Braddock (University of Manchester) 10/12/2017 1 What the project

More information

Honeywell Control Panels FOR RESIDENTIAL AND COMMERCIAL INSTALLATIONS. Feature Charts

Honeywell Control Panels FOR RESIDENTIAL AND COMMERCIAL INSTALLATIONS. Feature Charts Honeywell Control Panels FOR RESIDENTIAL AND COMMERCIAL INSTALLATIONS Feature Charts Control Panels FEATURE CHART LYNX Plus (L3000) (Supported Feature) (Not Supported) N/A (Not Applicable) LYNX Touch (L5210)

More information

DATAssure. Laboratory wireless alarm & monitoring system

DATAssure. Laboratory wireless alarm & monitoring system DATAssure Laboratory wireless alarm & monitoring system Wireless alarm & monitoring system A new monitoring generation The DATAssure wireless monitoring system is used across a broad range of market sectors

More information

C&I SYSTEM DIAGNOSTICS WITH SELF MONITORING AND REPORTING TECHNOLOGY (SMART)

C&I SYSTEM DIAGNOSTICS WITH SELF MONITORING AND REPORTING TECHNOLOGY (SMART) C&I SYSTEM DIAGNOSTICS WITH SELF MONITORING AND REPORTING TECHNOLOGY (SMART) Suneel kumar P I Shravan Kumar Seema Deo Bhanu Kumar Raine Dy.General Manager, Dy.Manager Sr.Manager Manager NTPC RSTPS NTPC

More information

Introduction to Modular Programming. Copyright 2012 Rockwell Automation, Inc. All rights reserved.

Introduction to Modular Programming. Copyright 2012 Rockwell Automation, Inc. All rights reserved. Introduction to Modular Programming Rev 5058-CO900C Copyright 2012 Rockwell Automation, Inc. All rights reserved. 2 Agenda Why Modular Programming? Architecting Modular Code Machine Example Meeting Code

More information

Android Controlled Fire Fighting Robot

Android Controlled Fire Fighting Robot IJSTE - International Journal of Science Technology & Engineering Volume 3 Issue 09 March 2017 ISSN (online): 2349-784X Android Controlled Fire Fighting Robot S. Sakthi Priyanka R. Sangeetha Department

More information

EVERY SECOND COUNTS CONNECTED SAFETY SOLUTIONS

EVERY SECOND COUNTS CONNECTED SAFETY SOLUTIONS EVERY SECOND COUNTS CONNECTED SAFETY SOLUTIONS WHAT WE DO Every second counts, and should a gas leak, health event, safety incident or security breach occur, Blackline s connected safety technology means

More information

PRESENTS AQUADUCT AUTOMATED WATER-LEAK MONITORING SYSTEM A KINGPIN TECHNOLOGY

PRESENTS AQUADUCT AUTOMATED WATER-LEAK MONITORING SYSTEM A KINGPIN TECHNOLOGY PRESENTS AQUADUCT AUTOMATED WATER-LEAK MONITORING SYSTEM A KINGPIN TECHNOLOGY INTRODUCING THE INNOVATIVE NEW TECHNOLOGY FOR THE DETECTION OF LEAKS IN WATER NETWORKS. SA WATER CRISIS the rising tide The

More information

AIRPORTS. CARECALLER PowerfulSecuritySolutionsForSeriousSecurityNeeds

AIRPORTS. CARECALLER PowerfulSecuritySolutionsForSeriousSecurityNeeds AIRPORTS CARECALLER PowerfulSecuritySolutionsForSeriousSecurityNeeds CARECALLER CARECALLER Emergency Call Systems are perfect for any Airport that is concerned with the safety and security of their employees.

More information

Home Security System for Controlling Theft using android ADK

Home Security System for Controlling Theft using android ADK Home Security System for Controlling Theft using android ADK B. Praveena 1, K. Rajganesh 2, B. Vinitha 3, S. Kandasamy 4, M. Chandraman 5 1, 2, 3, 4Bachelor of Electronics and Communication Engineering,Knowledge

More information

GI Standardization Overview

GI Standardization Overview Second workshop on the use of GIS/OGC standards in meteorology GI Standardization Overview 1 nicolas.lesage@ign.fr 12 Janvier 2009 Modèle TN-02.018-1.1 The goal of standardization According to decree number

More information

Facility Commander Complete, Integrated Command and Control

Facility Commander Complete, Integrated Command and Control Facility Commander Complete, Integrated Command and Control 2.0 Facility Commander Complete, integrated command and control Securing your business facilities requires multiple systems, often from different

More information

Aquarius - Spectrum. multi-layer acoustic water pipe monitoring solutions. Game changer in water network management

Aquarius - Spectrum. multi-layer acoustic water pipe monitoring solutions. Game changer in water network management Aquarius - Spectrum multi-layer acoustic water pipe monitoring solutions Game changer in water network management ID Founded in 2009 20 Employees Invested by Hutchinson Water Over 3,000 correlation sensors

More information

Methods of Software Integration of Alarm Systems

Methods of Software Integration of Alarm Systems Methods of Software Integration of Alarm Systems Jan Valouch Faculty of Applied Informatics Tomas Bata University in Zlin Nad Stranemi 4511, CZ 76005 Zlin Czech Republic valouch@fai.utb.cz Abstract This

More information

UltraSync Modular Hub

UltraSync Modular Hub Intrusion UltraSync Modular Hub UM-5000-CPU OVERVIEW The UltraSync Modular Hub is a smart security system ideal for residential installations requiring hardwired and/or wireless intrusion systems, as well

More information

A Low-Cost Intelligent Thermostat Incorporating a Learning Algorithm Based Scheduler and Internet Accessible Control Interfaces

A Low-Cost Intelligent Thermostat Incorporating a Learning Algorithm Based Scheduler and Internet Accessible Control Interfaces A Low-Cost Intelligent Thermostat Incorporating a Learning Algorithm Based Scheduler and Internet Accessible Control Interfaces 1 M.M. A. Rahman, D. Huizenga, 2 E. Chiaburu 1 School of Engineering, Grand

More information

C&K Software What s New. Commander II Version 3.0 Monitor II Version 3.0 Satellite II Version 1.0

C&K Software What s New. Commander II Version 3.0 Monitor II Version 3.0 Satellite II Version 1.0 C&K Software What s New Commander II Version 3.0 Monitor II Version 3.0 Satellite II Version 1.0 C&K Software PC-based receiver with monitoring features Windows-based Remote programming software (Commander

More information

Boztek Solutions` PLAYSTATE

Boztek Solutions` PLAYSTATE Boztek Solutions` PLAYSTATE REMOTE MONITORING & CONTROL SYSTEM FOR PLAYING FIELDS & OPEN SPACE Contact Details: Boztek Solutions Pty Ltd PO Box 272, Windsor, NSW 2756 Unit 12/124 Ham Street, South Windsor,

More information

CAN unit for Analog Sensors

CAN unit for Analog Sensors CAN unit for Analog Sensors Didactum`s Monitoring Systems have many uses: Monitoring of wring closets and server room environments Remote monitoring of technical rooms in branch offices Monitoring of power

More information