SoCQ : un système de gestion de données et de services en environnement pervasif

Size: px
Start display at page:

Download "SoCQ : un système de gestion de données et de services en environnement pervasif"

Transcription

1 SoCQ : un système de gestion de données et de services en environnement pervasif Yann Gripay, Le-Quyen La, Frédérique Laforest, Jean-Marc Petit Université de Lyon, CNRS INSA-Lyon, LIRIS, UMR avenue Jean Capelle Villeurbanne cedex, France {Yann.Gripay,Le-Quyen.La,Frederique.Laforest,Jean-Marc.Petit}@liris.cnrs.fr Résumé Interroger des sources de données non-conventionnelles est reconnu comme une problématique majeure dans les nouveaux environnements comme ceux de l'informatique pervasive. Un point clé est la possibilité d'interroger des données, des ux de données et des services de manière déclarative an de faciliter le développement d'applications pervasives. Le projet SoCQ (Service-oriented Continuous Queries) aborde les problématiques suivantes en s'appuyant sur les principes des bases de données : 1) la dénition d'une représentation homogène des sources de données et des services de l'environnement pervasif ; 2) la dénition d'un langage de requêtes pour ces environnements permettant d'exprimer des applications pervasives ; 3) la conception d'un système de gestion d'environnement pervasif (PEMS : Pervasive Environment Management System) supportant à la fois la représentation homogène et le mécanisme de requêtes. Cette démonstration montre notre prototype de PEMS en action, permettant à l'utilisateur de visualiser l'environnement et de dénir des applications pervasives. Mots-clés Bases de données ; Flux de données ; Services ; Requêtes continues ; Environnements pervasifs 1

2 1 Motivation The Service-oriented Continuous Query project, or SoCQ project [4], is devoted to making the development of pervasive applications easier through database principles. It aims at contributing in the area of Dataspaces [1] through a unied view of data and service spaces mandatory in pervasive environments. We proposed an approach [2, 3] to homogeneously represent such pervasive environments through database principles. The basic idea is to oer to application developers a database-like view of the environment resources, so that they can visualize this environment as a set of tables and launch declaratively-dened continuous queries involving available data sources and services. This approach is built on an extension of the relational model and uses a SQL-like query language. Through this homogeneous relational representation, the dierent operations of the Pervasive Environment Management System (or PEMS), like resource discovery and service invocations, can be translated into operations on tables: updating tables, retrieving values of virtual attributes, combining tables, etc. Pervasive applications can then be expressed using declarative continuous queries, and query optimization techniques can be applied to optimize the execution of those applications. 2 Overview of the SoCQ data model In the demo scenario, we monitor temperatures in an oce building: when a temperature exceeds some threshold in a room, an alert message is sent to the manager of this room. A photo of the room can be joined to the message. We consider an environment containing the following data sources and services: 1) two data relations: one containing some information about the rooms (manager, temperature threshold... ), the other one being a list of contacts (including contacts for the managers 2) some temperature sensors distributed in several rooms, providing data streams; 3) some cameras in the rooms, providing photo services; 4) some messenger services (mail, instant message, SMS). This environment can be represented homogeneously with relations and streams extended with virtual attributes and binding patterns [2, 3]. Virtual attributes are attributes that do not have a value: they may be provided a 2

3 RELATION surveillance ( area STRING, manager STRING, threshold REAL, alertmessage STRING STREAM temperatures ( area STRING, temperature REAL RELATION employees ( name STRING, address STRING, messenger SERVICE, text STRING VIRTUAL, sent BOOLEAN VIRTUAL ) USING BINDING PATTERNS ( sendmessage[messenger] ( address, text ) : ( sent ) Table 1: DDL description of XD-Relations for the demo scenario environment value through a query, either by direct assignments or by binding patterns that indicate their relationship with methods from services. We call such relations XD-Relations, standing for extended Dynamic Relations, and such environments relational pervasive environments. For the demo scenario, we can view a DDL representation of the schema of this environment in Table 1. For instance, the following table is an example of content for the XD- Relation employees. The constants mailer and jabber are two service references, the former for the mail server, the latter for the instant messaging server. The star (*) symbol reminds that virtual attributes have no value. name address messenger text sent nicolas nicolas@elysee.fr mailer * * carla carla@elysee.fr mailer * * françois francois@im.gouv.fr jabber * * The temperature monitoring can be declaratively dened as a Serviceoriented Continuous Query, or SoCQ query, over this relational pervasive environment. The three XD-Relations are joined (the stream temperature must be windowed) on the manager name and the area, the threshold is checked and the message body is set. The binding pattern sendmessage will be invoked in order to fetch a value for the initially virtual attribute sent. SELECT surveillance.area, surveillance.manager, employees.sent FROM WITH WHERE AND AND temperatures [now], employees, surveillance employees.text := surveillance.alertmessage surveillance.manager = employees.name surveillance.area = temperatures.area surveillance.threshold < temperatures.temperature USING employees.sendmessage This SQL-like query is a typical example of a pervasive application that is dened at the declarative level, without worrying about low-level technical considerations (programming languages, network protocols). 3

4 3 Description of the PEMS prototype The role of a PEMS is to manage a relational pervasive environment, with its dynamic data sources and set of services, along with the execution of the continuous queries over this environment. The PEMS core is composed of three modules. PEMS GUI Local Environment PEMS Client PEMS Peer Network PEMS Core PEMS Peer Query Processor Extended Table Manager Environment Local Environment Service Service Stream Database Service Stream Service The core Environment handles service discovery and remote invocations, with Local Environment Resource Managers as distributed proxies for local devices that provide services and streams. An Extended Table Manager builds a homogeneous representation as a set of XD- Relations, and the Query Processor allows to dene, optimize and execute SoCQ queries. A PEMS GUI enables to visualize existing XD-Relations and their content, to add/delete XD-Relations, and to launch/stop SoCQ queries. 4 Demonstration scenario The demonstration platform is a functional PEMS and a pervasive environment that provides services and data streams mentioned in this paper. A rst PC is used to host the PEMS and to interact with it through its GUI. Two other PCs are used to host dierent services and devices: physical or simulated temperature sensors (Thermochron ibutton DS1921, Sun SPOTs), webcams (from Logitech), instant messaging server (Openre server from Jive Software), (gateway to) SMS gateway (commercial service from Clickatell), (gateway to) mail server. Two handheld devices (1 PDA, 1 SmartPhone) are also used to host instant messaging client. A poster with illustrations and explanations is provided to help demo visitors comprehend the dierent parts of the platform and their interactions. A demo visitor can then interact with the platform in three steps: 1. Testing the demo conguration: visualize the environment through the PEMS GUI and observe the execution of the demo query while manipulating the sensors to interact with the environment, e.g. receiving messages when heating the temperature sensors in his/her hand. 4

5 2. Modifying the demo conguration: modify the data and/or the query and observe the impact on the execution of the pervasive application, e.g. by entering his own contact information to receive a SMS sent by the query on his/her own smart phone. 3. Writing new queries: discuss with demo authors and propose new queries on the complete testbed environment with additional data sources and services (RSS feeds, cameras with object detection, Sun SPOT motion sensors and LEDs, pervasive home model in Lego with electric curtains... ) in order to test the expressiveness of the proposed model. The PEMS allows an environment conguration to be saved into and loaded from a le. Demo congurations can be quickly (re)loaded into the PEMS when needed, in particular the initial one. 5 Demonstration contributions This demo allows to demonstrate the following points: 1) a homogeneous database-like view on pervasive environments containing dynamic data sources and services is possible as a set of XD-Relations, through the notions of virtual attributes and binding patterns; 2) Service-oriented Continuous Queries (SoCQ queries) over relational pervasive environment allow to dene pervasive applications combining data sources and services; and 3) declarative denitions of SoCQ queries make the denition and the evolution of pervasive applications easier. Although this model is presented in the context of pervasive environments, it can be applied to less dynamic systems that could benet from the declarative denition of applications combining data sources and distributed functionalities. References [1] M. Franklin, A. Halevy, and D. Maier. From Databases to Dataspaces: a new Abstraction for Information Management. SIGMOD Record, 34(4):2733, [2] Y. Gripay. Service-oriented Continuous Queries for Pervasive Systems. In EDBT 2008 PhD Workshop (unocial proceedings), [3] Y. Gripay, F. Laforest, and J.-M. Petit. Vers une algèbre relationnelle étendue aux services. In BDA 2008, pages 120, Oct [4] SoCQ Project. 5

Service-oriented Continuous Queries for Pervasive Systems

Service-oriented Continuous Queries for Pervasive Systems Service-oriented Continuous Queries for Pervasive s Yann Gripay Université de Lyon, INSA-Lyon, LIRIS UMR 5205 CNRS 7 avenue Jean Capelle F-69621 Villeurbanne, France yann.gripay@liris.cnrs.fr ABSTRACT

More information

Towards service-oriented continuous queries in pervasive systems

Towards service-oriented continuous queries in pervasive systems Towards service-oriented continuous queries in pervasive systems Yann Gripay * Frédérique Laforest * Jean-Marc Petit * * Université de Lyon, INSA-Lyon, LIRIS UMR 5205 CNRS 7 avenue Jean Capelle, F-69621

More information

Towards Action-Oriented Continuous Queries in Pervasive Systems

Towards Action-Oriented Continuous Queries in Pervasive Systems Towards Action-Oriented Continuous Queries in Pervasive Systems Yann Gripay, Frederique Laforest, Jean-Marc Petit Université de Lyon, INSA-Lyon, LIRIS UMR 5205 CNRS 7 avenue Jean Capelle 69621 Villeurbanne

More information

XML Document Classification using SVM

XML Document Classification using SVM XML Document Classification using SVM Samaneh Chagheri, Catherine Roussey, Sylvie Calabretto, Cyril Dumoulin To cite this version: Samaneh Chagheri, Catherine Roussey, Sylvie Calabretto, Cyril Dumoulin.

More information

Visual tools to select a layout for an adapted living area

Visual tools to select a layout for an adapted living area Visual tools to select a layout for an adapted living area Sébastien AUPETIT, Arnaud PURET, Pierre GAUCHER, Nicolas MONMARCHÉ and Mohamed SLIMANE Université François Rabelais Tours, Laboratoire d Informatique,

More information

ELIESER : USER MANUAL

ELIESER : USER MANUAL INSTITUT NATIONAL DE RECHERCHE EN INFORMATIQUE ET EN AUTOMATIQUE ELIESER : USER MANUAL Nicolas MERLET, Josiane ZERUBIA N 0180 Septembre 1995 PROGRAMME 4 apport technique ISSN 0249-6399 ELIESER : USER

More information

The VirGIS Geographic Integration System

The VirGIS Geographic Integration System The VirGIS Geographic Integration System Omar Boucelma François-Marie Colonna Mehdi Essid LSIS-CNRS, Université Paul Cézanne - Aix-Marseille Avenue Escadrille Normandie-Niemen 13397 Marseille Cedex 20

More information

A Dynamic Distributed Fedrated Approach for the Internet of Things

A Dynamic Distributed Fedrated Approach for the Internet of Things A Dynamic Distributed Fedrated Approach for the Internet of Things February 12, 2011 1 University of Alcalá - UAH Thales-TAI A Dynamic Distributed Fedrated Approach for the Internet of Things Diego Casado

More information

Laboratoire de l Informatique du Parallélisme

Laboratoire de l Informatique du Parallélisme Laboratoire de l Informatique du Parallélisme École Normale Supérieure de Lyon Unité Mixte de Recherche CNRS-INRIA-ENS LYON n o 8512 SPI Multiplication by an Integer Constant Vincent Lefevre January 1999

More information

Formation. Application Server Description du cours

Formation. Application Server Description du cours Formation Application Server 2017 Description du cours Formation Application Server 2017 Description Cette formation d une durée de 5 jours aborde les concepts de l infrastructure logicielle System Platform

More information

Improving the Correct Eventual Consistency Tool

Improving the Correct Eventual Consistency Tool arxiv:1807.06431v1 [cs.dc] 17 Jul 2018 Improving the Correct Eventual Consistency Tool Sreeja Nair, Marc Shapiro RESEARCH REPORT N 9191 July 2018 Project-Teams DELYS ISSN 0249-6399 ISRN INRIA/RR--9191--FR+ENG

More information

5. Enterprise JavaBeans 5.3 Entity Beans. Entity Beans

5. Enterprise JavaBeans 5.3 Entity Beans. Entity Beans Entity Beans Vue objet d une base de données (exemples: client, compte, ) en général, une ligne d une table relationnelle (SGBD-R) ou un objet persistant (SGBD- OO) sont persistant (long-lived) la gestion

More information

Analysis of existing databases at the logical level: the DBA companion project

Analysis of existing databases at the logical level: the DBA companion project Analysis of existing databases at the logical level: the DBA companion project Fabien De Marchi 1, Stéphane Lopes 2, Jean-Marc Petit 1, Farouk Toumani 1 1 Laboratoire LIMOS, CNRS UMR 6158 Université Blaise

More information

ScienceDirect. Data Science approach for a cross-disciplinary understanding of urban phenomena: Application to energy efficiency of buildings

ScienceDirect. Data Science approach for a cross-disciplinary understanding of urban phenomena: Application to energy efficiency of buildings Available online at www.sciencedirect.com ScienceDirect Procedia Engineering 115 (2015 ) 45 52 Symposium Towards integrated modelling of urban systems Data Science approach for a cross-disciplinary understanding

More information

SunVTS Quick Reference Card

SunVTS Quick Reference Card SunVTS Quick Reference Card Sun Microsystems, Inc. www.sun.com Part No. 820-1672-10 September 2007, Revision 01 Submit comments about this document at: http://www.sun.com/hwdocs/feedback Copyright 2007

More information

P2P Logging and Timestamping for Reconciliation

P2P Logging and Timestamping for Reconciliation INSTITUT NATIONAL DE RECHERCHE EN INFORMATIQUE ET EN AUTOMATIQUE P2P Logging and Timestamping for Reconciliation Mounir Tlili - W. Kokou Dedzoe - Esther Pacitti - Reza Akbarinia - Patrick Valduriez N 6497

More information

Design and Implementation of rowe, a Web-Friendly Communication Library

Design and Implementation of rowe, a Web-Friendly Communication Library arxiv:1501.02162v1 [cs.dc] 9 Jan 2015 Design and Implementation of rowe, a Web-Friendly Communication Library Ludovic Courtès TECHNICAL REPORT N 452 Mars 2018 Project-Team Indes ISSN 0249-0803 ISRN INRIA/RT--452--FR+ENG

More information

DRAFT. Un Système de gestion de données XML probabilistes * Pierre Senellart Asma Souihli

DRAFT. Un Système de gestion de données XML probabilistes * Pierre Senellart Asma Souihli Un Système de gestion de données XML probabilistes * Pierre Senellart Asma Souihli Institut Télécom; Télécom ParisTech CNRS LTCI, 46 rue Barrault 75634 Paris, France [first.last]@telecom-paristech.fr Cette

More information

Control of an automatic parking gate

Control of an automatic parking gate Control of an automatic parking gate Jean-Marc ROUSSEL jean-marc.roussel@lurpa.ens-cachan.fr LURPA,ENS Cachan 61, avenue du Prsident Wilson 94235 CACHAN Cedex April 2, 212 1 Introduction This document

More information

A Loosely Synchronized Execution Model for a. Simple Data-Parallel Language. (Extended Abstract)

A Loosely Synchronized Execution Model for a. Simple Data-Parallel Language. (Extended Abstract) A Loosely Synchronized Execution Model for a Simple Data-Parallel Language (Extended Abstract) Yann Le Guyadec 2, Emmanuel Melin 1, Bruno Ran 1 Xavier Rebeuf 1 and Bernard Virot 1? 1 LIFO - IIIA Universite

More information

A Domain-Specific IDL and its Compiler for Pervasive Computing Applications

A Domain-Specific IDL and its Compiler for Pervasive Computing Applications A Domain-Specific IDL and its Compiler for Pervasive Computing Applications Wilfried Jouve, Julien Lancia, Nicolas Palix, Charles Consel, Julia Lawall To cite this version: Wilfried Jouve, Julien Lancia,

More information

New Conceptual Modeling Requirements for Stream Data Warehouses

New Conceptual Modeling Requirements for Stream Data Warehouses New Conceptual Modeling Requirements for Stream Data Warehouses Sandro Bimonte*, Omar Boussaid**, Lama El Sarraj*** *Irstea, UR TSCF, Campus des Cézeaux, 63173 Aubiere, France Sandro.bimonte@irstea.fr

More information

MODE-PP HTML: A GDMO/GRM to HTML translator -Release 1.0- Reference Manual

MODE-PP HTML: A GDMO/GRM to HTML translator -Release 1.0- Reference Manual INSTITUT~NATIONAL~DE~RECHERCHE EN~INFORMATIQUE~ET~EN~AUTOMATIQUE MODE-PP HTML: A GDMO/GRM to HTML translator -Release 1.0- Reference Manual ~ Olivier Festor ~ ~ N???? décembre 1996 ~THÈME~1~ apport technique

More information

Semantic Indexing of Technical Documentation

Semantic Indexing of Technical Documentation Semantic Indexing of Technical Documentation Samaneh CHAGHERI 1, Catherine ROUSSEY 2, Sylvie CALABRETTO 1, Cyril DUMOULIN 3 1. Université de LYON, CNRS, LIRIS UMR 5205-INSA de Lyon 7, avenue Jean Capelle

More information

When double rounding is odd

When double rounding is odd Laboratoire de l Informatique du Parallélisme École Normale Supérieure de Lyon Unité Mixte de Recherche CNRS-INRIA-ENS LYON-UCBL n o 5668 When double rounding is odd Sylvie Boldo, Guillaume Melquiond November

More information

Ontologies For Video Events

Ontologies For Video Events Ontologies For Video Events François Bremond, Nicolas Maillot, Monique Thonnat, Van-Thinh Vu To cite this version: François Bremond, Nicolas Maillot, Monique Thonnat, Van-Thinh Vu. Ontologies For Video

More information

Implementation of Dynamic Algebra in Epsilonwriter

Implementation of Dynamic Algebra in Epsilonwriter Implementation of Dynamic Algebra in Epsilonwriter Jean-François Nicaud, Christophe Viudez Aristod, 217 rue de Paris, 91120 Palaiseau, France jeanfrancois.nicaud@laposte.net cviudez@free.fr http://www.epsilonwriter.com

More information

A Best-First Strategy For Finding Frequent Sets

A Best-First Strategy For Finding Frequent Sets A Best-First Strategy For Finding Frequent Sets J. Baixeries G. Casas-Garriga J.L. Balcázar Departament de LSI. Campus Nord Universitat Politècnica de Catalunya Jordi Girona Salgado, 1-3 08034 Barcelona

More information

Tridimensional invariant correlation based on phase-coded and sine-coded range images

Tridimensional invariant correlation based on phase-coded and sine-coded range images J. Opt. 29 (1998) 35 39. Printed in the UK PII: S0150-536X(98)89678-0 Tridimensional invariant correlation based on phase-coded and sine-coded range images Eric Paquet, Pasquala García-Martínez and Javier

More information

Aggregated search: From information nuggets to aggregated documents

Aggregated search: From information nuggets to aggregated documents Aggregated search: From information nuggets to aggregated documents Institute de Recherche en Informatique de Toulouse, UMR 5505 CNRS, SIG-RFI 118 route de Narbonne F-31062 Toulouse Cedex 9 Arlind.Kopliku@irit.fr

More information

I R I S A. P U B L I C A T I O N I N T E R N E N o PROPOSING A NEW QUEUE SERVICE SCHEME FOR ABR MULTICAST FLOW MUDASSIR TUFAIL AND BERNARD COUSIN

I R I S A. P U B L I C A T I O N I N T E R N E N o PROPOSING A NEW QUEUE SERVICE SCHEME FOR ABR MULTICAST FLOW MUDASSIR TUFAIL AND BERNARD COUSIN I R I 1159 P U B L I C A T I O N I N T E R N E N o S INSTITUT DE RECHERCHE EN INFORMATIQUE ET SYSTÈMES ALÉATOIRES A PROPOSING A NEW QUEUE SERVICE SCHEME FOR ABR MULTICAST FLOW MUDASSIR TUFAIL AND BERNARD

More information

Java et Mascopt. Jean-François Lalande, Michel Syska, Yann Verhoeven. Projet Mascotte, I3S-INRIA Sophia-Antipolis, France

Java et Mascopt. Jean-François Lalande, Michel Syska, Yann Verhoeven. Projet Mascotte, I3S-INRIA Sophia-Antipolis, France Java et Mascopt Jean-François Lalande, Michel Syska, Yann Verhoeven Projet Mascotte, IS-INRIA Sophia-Antipolis, France Formation Mascotte 09 janvier 00 Java Java et Mascopt - Formation Mascotte 09 janvier

More information

Visualization process of Temporal Data

Visualization process of Temporal Data Visualization process of Temporal Data Chaouki Daassi 1, Laurence Nigay 2 and Marie-Christine Fauvet 2 1 Laboratoire SysCom, Université de Savoie, Chambéry, France 2 Laboratoire CLIPS-IMAG BP 53-38041,

More information

Rule Base Inheritance

Rule Base Inheritance Rule Base Inheritance François Pachet LAFORIA Adresse : LAFORIA, Institut Blaise Pascal Boite 169, Université Paris VI, Tour 46-00, 4, Place Jussieu 75252, Paris Cedex 05, France Téléphone: (33).1. 44.27.70.10

More information

Tutorial 1 : minimal example - simple variables replacements

Tutorial 1 : minimal example - simple variables replacements Tutorial 1 : minimal example - simple variables replacements The purpose of this tutorial is to show you the basic feature of odtphp : simple variables replacement. require_once('../library/odf.php');

More information

Error In Extensions Schema Of System Center 2012 Configuration Manager

Error In Extensions Schema Of System Center 2012 Configuration Manager Error In Extensions Schema Of System Center 2012 Configuration Manager Planning to Use Extensions in Configuration Manager When you extend the Active Directory schema for System Center 2012 Configuration

More information

I R I S A P U B L I C A T I O N I N T E R N E N o AN HYBRID EXPLICIT MULTICAST/UNICAST RECURSIF APPROACH FOR MULTICAST ROUTING

I R I S A P U B L I C A T I O N I N T E R N E N o AN HYBRID EXPLICIT MULTICAST/UNICAST RECURSIF APPROACH FOR MULTICAST ROUTING I R I P U B L I C A T I O N I N T E R N E 1687 N o S INSTITUT DE RECHERCHE EN INFORMATIQUE ET SYSTÈMES ALÉATOIRES A AN HYBRID EXPLICIT MULTICAST/UNICAST RECURSIF APPROACH FOR MULTICAST ROUTING ALI BOUDANI

More information

SunVTS Quick Reference Card

SunVTS Quick Reference Card SunVTS Quick Reference Card Sun Microsystems, Inc. 901 San Antonio Road Palo Alto, CA 94303-4900 U.S.A. 650-960-1300 Part No. 806-6519-10 January 2001, Revision A Send comments about this document to:

More information

WASP Wireless Acceleration Sensor Puck USER MANUAL

WASP Wireless Acceleration Sensor Puck USER MANUAL WASP Wireless Acceleration Sensor Puck USER MANUAL VERSION 3.20 15/07/2016 WASP is a registered trademark owned by BossPac Engineering & Technology WASP is a PATENT PENDING technology owned by BossPac

More information

Model driven engineering method for SAIA architecture design

Model driven engineering method for SAIA architecture design Model driven engineering method for SAIA architecture design Julien DeAntoni Jean-Philippe Babau CITI laboratory INSA-Lyon 21, avenue Jean Capelle, 69621 Villeurbanne cedex julien.deantoni ; jean-philippe.babau@insa-lyon.fr

More information

Feature-Based Facial Expression Recognition: Experiments With a Multi-Layer Perceptron

Feature-Based Facial Expression Recognition: Experiments With a Multi-Layer Perceptron Feature-Based Facial Expression Recognition: Experiments With a Multi-Layer Perceptron Zhengyou Zhang To cite this version: Zhengyou Zhang. Feature-Based Facial Expression Recognition: Experiments With

More information

ENGINEERING PROGRAMME

ENGINEERING PROGRAMME ENGINEERING PROGRAMME SPECIALISATION VIRTUAL REALITY Établissement public sous tutelle du ministère de l Enseignement supérieur, de la Recherche et de l Innovation École Centrale de Nantes 1 rue de la

More information

IMPROVING COLLABORATIONS IN NEUROSCIENTIST COMMUNITY

IMPROVING COLLABORATIONS IN NEUROSCIENTIST COMMUNITY LABORATOIRE INFORMATIQUE, SIGNAUX ET SYSTÈMES DE SOPHIA ANTIPOLIS UMR 6070 IMPROVING COLLABORATIONS IN NEUROSCIENTIST COMMUNITY Isabelle Mirbel, Pierre Crescenzo Equipe MODALIS Rapport de recherche ISRN

More information

ELECTRONIC SUBMISSION SYSTEM HANDBOOK

ELECTRONIC SUBMISSION SYSTEM HANDBOOK ELECTRONIC SUBMISSION SYSTEM HANDBOOK 1. IMPORTANT INFORMATION IMPORTANT: The online platform corresponds to an adaptation of the French National Research Agency (ANR) electronic submission tool. In accordance,

More information

Shared File Directory

Shared File Directory A Web-Based Repository Manager for Brain Mapping Data R.M. Jakobovits, B. Modayur, and J.F. Brinkley Departments of Computer Science and Biological Structure University of Washington, Seattle, WA The Web

More information

Functional Blue Prints for the Development of a KMapper Prototype

Functional Blue Prints for the Development of a KMapper Prototype Functional Blue Prints for the Development of a KMapper Prototype SOFTWARE DESIGN DOCUMENT KMAPPER KNOWLEDGE INFERRING SERVICES And prepared by Martin Froment and Ludovic Tobin Fujitsu Consulting (Canada)

More information

Virtual Composition of EMF Models

Virtual Composition of EMF Models Virtual Composition of EMF Models Cauê Clasen, Frédéric Jouault, Jordi Cabot To cite this version: Cauê Clasen, Frédéric Jouault, Jordi Cabot. Virtual Composition of EMF Models. 7èmes Journées sur l Ingénierie

More information

Mardi 3 avril Epreuve écrite sur un document en anglais

Mardi 3 avril Epreuve écrite sur un document en anglais C O L L E CONCOURS INTERNE ET EXTERNE DE TECHNICIEN DE CLASSE NORMALE DES SYSTEMES D INFORMATION ET DE COMMUNICATION Ne pas cacher le cadre d identité. Cette opération sera réalisée par l administration

More information

ATC An OSGI-based Semantic Information Broker for Smart Environments. Paolo Azzoni Research Project Manager

ATC An OSGI-based Semantic Information Broker for Smart Environments. Paolo Azzoni Research Project Manager An OSGI-based Semantic Information Broker for Smart Environments ATC 2011 ARTEMIS JU SP3 / 100017: Smart Objects For Intelligent Applications Paolo Azzoni Research Project Manager Summary Introduction

More information

Generative Programming from a Domain-Specific Language Viewpoint

Generative Programming from a Domain-Specific Language Viewpoint Generative Programming from a Domain-Specific Language Viewpoint Charles Consel To cite this version: Charles Consel. Generative Programming from a Domain-Specific Language Viewpoint. Unconventional Programming

More information

Setup of epiphytic assistance systems with SEPIA

Setup of epiphytic assistance systems with SEPIA Setup of epiphytic assistance systems with SEPIA Blandine Ginon, Stéphanie Jean-Daubias, Pierre-Antoine Champin, Marie Lefevre To cite this version: Blandine Ginon, Stéphanie Jean-Daubias, Pierre-Antoine

More information

Influence d un Paysage Fractal sur la Propagation d un Feu de Forêt

Influence d un Paysage Fractal sur la Propagation d un Feu de Forêt 1 Influence d un Paysage Fractal sur la Propagation d un Feu de Forêt F. Aguayo*, A. Fuentes, J.P. Clerc et B. Porterie Polytech Marseille Université de Provence IUSTI UMR 6995 du CNRS andres.fuentes@polytech.univ-mrs.fr

More information

PermaNetPlus for Pcorr+ and Permalog+ Quickstart Guide

PermaNetPlus for Pcorr+ and Permalog+ Quickstart Guide PermaNetPlus for Pcorr+ and Permalog+ Quickstart Guide Version D TABLE OF CONTENTS INTRODUCTION... 2 CONNECTING TO LOGGERS... 3 FIRST PATROL OF THE LOGGERS... 3 SETTING UP THE LOGGER... 4 MAKING A SOUND

More information

Monitoring the Usage of the ZEUS Analysis Grid

Monitoring the Usage of the ZEUS Analysis Grid Monitoring the Usage of the ZEUS Analysis Grid Stefanos Leontsinis September 9, 2006 Summer Student Programme 2006 DESY Hamburg Supervisor Dr. Hartmut Stadie National Technical

More information

Template Metaprogramming Techniques for Concept-Based Specialization

Template Metaprogramming Techniques for Concept-Based Specialization Template Metaprogramming Techniques for Concept-Based Specialization Bruno Bachelet, Antoine Mahul, Loïc Yon To cite this version: Bruno Bachelet, Antoine Mahul, Loïc Yon. Template Metaprogramming Techniques

More information

Syrtis: New Perspectives for Semantic Web Adoption

Syrtis: New Perspectives for Semantic Web Adoption Syrtis: New Perspectives for Semantic Web Adoption Joffrey Decourselle, Fabien Duchateau, Ronald Ganier To cite this version: Joffrey Decourselle, Fabien Duchateau, Ronald Ganier. Syrtis: New Perspectives

More information

Understanding Business Trends from Data Evolution with Tornado

Understanding Business Trends from Data Evolution with Tornado Understanding Business Trends from Data Evolution with Tornado Azhar Ait Ouassarah, Nicolas Averseng, Xavier Fournet, Jean-Marc Petit, Romain Revol, Vasile-Marian Scuturici To cite this version: Azhar

More information

Distance Transform. Etienne Folio. Technical Report n o 0806, JUNE 2008 revision 1748

Distance Transform. Etienne Folio. Technical Report n o 0806, JUNE 2008 revision 1748 Distance Transform Etienne Folio Technical Report n o 0806, JUNE 2008 revision 1748 Abstract: A distance transform, also known as distance map or distance field, is a representation of a distance function

More information

SERVICES PLATFORM AND TESTBED

SERVICES PLATFORM AND TESTBED SERVICES PLATFORM AND TESTBED OPTIMACS Identification: D4.3 Abstract: This document describes the architecture and the communication protocols used in the Optimacs platform. Date Author Description October

More information

Deployment of software components: Application to Wireless System

Deployment of software components: Application to Wireless System Deployment of software components: Application to Wireless System KOUNINEF Belkacem 1, BOUZERITA Mohamed 2 Institut National des Télécommunications et des Technologies de l Information et de la Communication

More information

Home Monitoring and Control service provided by Verizon Online LLC

Home Monitoring and Control service provided by Verizon Online LLC Home Monitoring and Control service provided by Verizon Online LLC A separate subscription to Verizon FiOS TV is required for use with FiOS TV service. About This Manual This manual is designed for online

More information

Workflow Concepts and Techniques

Workflow Concepts and Techniques Workflow Concepts and Techniques Hala Skaf-Molli Maître de Conférences Université de Nantes Hala.Skaf@univ-nantes.fr http://pagesperso.lina.univ-nantes.fr/~skaf-h Workflow Concepts and Techniques General

More information

Grandstream Networks, Inc. Connecting GDS3710 with GXV3370 Configuration Guide

Grandstream Networks, Inc. Connecting GDS3710 with GXV3370 Configuration Guide Grandstream Networks, Inc. Connecting GDS3710 with GXV3370 Configuration Guide Table of Contents INTRODUCTION... 3 PEERING SCENARIO... 4 Settings Configuration on the GDS3710 Side... 4 Settings Configuration

More information

VLANs. Commutation LAN et Wireless Chapitre 3

VLANs. Commutation LAN et Wireless Chapitre 3 VLANs Commutation LAN et Wireless Chapitre 3 ITE I Chapter 6 2006 Cisco Systems, Inc. All rights reserved. Cisco Public 1 Objectifs Expliquer le rôle des VLANs dans un réseau convergent. Expliquer le rôle

More information

Laboratoire de l Informatique du Parallélisme

Laboratoire de l Informatique du Parallélisme Laboratoire de l Informatique du Parallélisme Ecole Normale Supérieure de Lyon Unité de recherche associée au CNRS n 1398 Upper bounds for the span in triangular lattice graphs: application to frequency

More information

Grandstream Networks, Inc. Connecting GDS3710 with WP820 Configuration Guide

Grandstream Networks, Inc. Connecting GDS3710 with WP820 Configuration Guide Grandstream Networks, Inc. Connecting GDS3710 with WP820 Configuration Guide Table of Contents INTRODUCTION... 3 PEERING SCENARIO... 4 Settings Configuration on the GDS3710 Side... 4 Settings Configuration

More information

ON THE CHARACTERISTICS OF FUNCTIONAL ELEMENTS FOR INNOVATIVE DESK LAMP CONCEPTUAL DESIGN

ON THE CHARACTERISTICS OF FUNCTIONAL ELEMENTS FOR INNOVATIVE DESK LAMP CONCEPTUAL DESIGN ON THE CHARACTERISTICS OF FUNCTIONAL ELEMENTS FOR INNOVATIVE DESK LAMP CONCEPTUAL DESIGN Nien-Te Liu 1, Chang-Tzuoh Wu 2 and Jia-Cin Li 3 1 Department of Product Design, Shu-Te University, Kaohsiung, Taiwan

More information

Cisco dévoile une plate-forme de services qui ouvre la voie vers une nouvelle ère pour la mobilité

Cisco dévoile une plate-forme de services qui ouvre la voie vers une nouvelle ère pour la mobilité INFORMATION PRESSE Cisco France Véronique Jaffro vejaffro@cisco.com Tel : 01 58 04 31 90 Hill & Knowlton Caroline Langlais caroline.langlais@hillandknowlton.com Tel : 01 41 05 44 48 / 23 Cisco dévoile

More information

Optimizing subset queries: a step towards SQL-based inductive databases for itemsets

Optimizing subset queries: a step towards SQL-based inductive databases for itemsets 0 ACM Symposium on Applied Computing Optimizing subset queries: a step towards SQL-based inductive databases for itemsets Cyrille Masson INSA de Lyon-LIRIS F-696 Villeurbanne, France cyrille.masson@liris.cnrs.fr

More information

Demonstrating Agent Vi s Analytics. savvi 5.3 & 5.4

Demonstrating Agent Vi s Analytics. savvi 5.3 & 5.4 Demonstrating Agent Vi s Analytics savvi 5.3 & 5.4 Contents 1 Overview... 3 1.1 About savvi Demo Setup... 3 1.2 System Requirements... 3 1.2.1 Hardware... 3 1.2.2 Operating System... 3 2 Installation Procedure...

More information

QUICK START GUIDE EJ-UW700. Bluetooth C Pen

QUICK START GUIDE EJ-UW700. Bluetooth C Pen QUICK START GUIDE EJ-UW700 Bluetooth C Pen Printed in Korea XXXXX Rev.1.0 E Type 02/2016 a b c Copyright 2016 Samsung Electronics Bluetooth is a registered trademark of Bluetooth SIG, Inc. worldwide. Please

More information

Providing Cluster Environments with High-Availability and Load-Balancing

Providing Cluster Environments with High-Availability and Load-Balancing Providing Cluster Environments with High-Availability and -Balancing M.A.R. Dantas a, R.M. Alvim b, F.L.L. Grossmann b a Department of Informatics and Statistics (INE), Federal University of Santa Catarina

More information

Declarative approach for long-term sensor data storage

Declarative approach for long-term sensor data storage Declarative approach for long-term sensor data storage Manel Charfi To cite this version: Manel Charfi. Declarative approach for long-term sensor data storage. Databases [cs.db]. Université de Lyon, 2017.

More information

WTX MicroStream. First Multiroom Plug & Play Audiophile Streamer

WTX MicroStream. First Multiroom Plug & Play Audiophile Streamer WTX MicroStream First Multiroom Plug & Play Audiophile Streamer What is the WTX-MicroStream The WTX-Microstream is an innovative wireless HiFi streamer which can be used with any amplifier, HiFi sytem,

More information

Help when needed, but no more: Efficient Read/Write Partial Snapshot

Help when needed, but no more: Efficient Read/Write Partial Snapshot Help when needed, but no more: Efficient Read/Write Partial Snapshot Damien Imbs, Michel Raynal To cite this version: Damien Imbs, Michel Raynal. Help when needed, but no more: Efficient Read/Write Partial

More information

Windows Server 2003 Installation Configuration Et Administration Pdf

Windows Server 2003 Installation Configuration Et Administration Pdf Windows Server 2003 Installation Configuration Et Administration Pdf Enable SharePoint Administration Service. 55. 4.5. Configure Windows the installation and audit configuration processes. 1.1. Netwrix

More information

User Manual 318BT. Phantom Powered Bluetooth Audio Receiver

User Manual 318BT. Phantom Powered Bluetooth Audio Receiver User Manual 318BT Phantom Powered Bluetooth Audio Receiver Contents Product brief 3 Getting started 4 Regular use 6 Troubleshooting 7 Specifications 8 FCC Compliance 9 Canada- IC 10 Warranty 11 318BT Phantom

More information

MobiNEST. WASP Portable NEST Receiver USER MANUAL VERSION /08/2018

MobiNEST. WASP Portable NEST Receiver USER MANUAL VERSION /08/2018 MobiNEST WASP Portable NEST Receiver USER MANUAL VERSION 1.2 22/08/2018 WASP is a registered trademark owned by BossPac Engineering & Technology WASP is a PATENT PENDING technology owned by BossPac Engineering

More information

Voir ces deux articles : [3]

Voir ces deux articles :  [3] Publié sur WindowsLinux.net (http://www.windowslinux.net) Accueil > Microsoft Security Essentials Microsoft Security Essentials [1] Téléchargements Le téléchargement de MSE (Microsoft Security Essentials)

More information

E-Candidat (V2) Online application file Applicant s handbook

E-Candidat (V2) Online application file Applicant s handbook E-Candidat (V2) Online application file Applicant s handbook To apply for a course at the Science Faculty, you have to follow the three steps mentioned in the table of contents and depicted here below.

More information

A Plexos International Network Operating Technology May 2006

A Plexos International Network Operating Technology May 2006 A Plexos International Network Operating Technology May 2006 BY 4664 Jamestown Ave, Suite 325 Baton Rouge, LA 70808 225.218.8002 1.0 Introduction. is a software environment comprised of proven technologies

More information

Digital Excellence. Inventer de nouveaux services et nouveaux usages Témoignage de la ville de Marseille

Digital Excellence. Inventer de nouveaux services et nouveaux usages Témoignage de la ville de Marseille Digital Excellence Inventer de nouveaux services et nouveaux usages Témoignage de la ville de Marseille Fabienne Marty Directeur Architecture et Management de la Donnée, Ville de Marseille Eric Delfosse

More information

Eurescom MUST project Multimodal, multilingual information services for small mobile terminals

Eurescom MUST project Multimodal, multilingual information services for small mobile terminals TALN 2002, Nancy, 24-27juin 2002 Eurescom MUST project Multimodal, multilingual information services for small mobile terminals Malek Boualem (1), Luis Almeida (2), Ingunn Amdal (3), Nuno Beires (2), Lou

More information

Conception Orientée Objet. Romain Rouvoy Licence mention Informatique Université Lille 1

Conception Orientée Objet. Romain Rouvoy Licence mention Informatique Université Lille 1 Conception Orientée Objet Romain Rouvoy Licence mention Informatique Université Lille 1 1 Menu du jour 1. Coder c est douter 2. De la génération 3. À l analyse 2 Mauvaise conception? Où est le problème?

More information

Distributed Multicast Tree Aggregation

Distributed Multicast Tree Aggregation Distributed Multicast Tree Aggregation Joanna Moulierac, Alexandre Guitton To cite this version: Joanna Moulierac, Alexandre Guitton. Distributed Multicast Tree Aggregation. [Research Report] PI 1737,

More information

Transparent Access to Legacy Data in Java. Olivier Gruber. IBM Almaden Research Center. San Jose, CA Abstract

Transparent Access to Legacy Data in Java. Olivier Gruber. IBM Almaden Research Center. San Jose, CA Abstract Transparent Access to Legacy Data in Java Olivier Gruber IBM Almaden Research Center San Jose, CA 95120 Abstract We propose in this paper an extension to PJava in order to provide a transparent access

More information

CS313D: ADVANCED PROGRAMMING LANGUAGE

CS313D: ADVANCED PROGRAMMING LANGUAGE CS313D: ADVANCED PROGRAMMING LANGUAGE Computer Science department Lecture 11: Connection to Databases Lecture Contents 2 What is a database? Relational databases Cases study: A Books Database Querying

More information

Model Driven Production of Domain-Specific Modeling Tools

Model Driven Production of Domain-Specific Modeling Tools Model Driven Production of Domain-Specific Modeling Tools Bassem KOSAYBA, Raphaël MARVIE, Jean-Marc GEIB Laboratoire d Informatique Fondamentale de Lille UMR CNRS 8022 59655 Villeneuve d Ascq {kosayba,marvie,geib}@lifl.fr

More information

A multimedia courseware on wavelets

A multimedia courseware on wavelets A multimedia courseware on wavelets Krystian MIKOLAJCZYK, Wojciech MAZIARZ, Patrick HORAIN Signal & Image Processing department Institut National des Télécommunications 9, rue Charles Fourier, 91011 EVRY

More information

An ontological approach for modeling technical standards for compliance checking

An ontological approach for modeling technical standards for compliance checking Author manuscript, published in "The Fifth International Conference on Web Reasoning and Rule Systems, RR 2011 (2011)" An ontological approach for modeling technical standards for compliance checking Khalil

More information

Introduction to Mobile Application and Development

Introduction to Mobile Application and Development Introduction to Mobile Application and Development Mobile Phones A mobile phone (also called mobile, cellular telephone, cell phone, or hand phone is an electronic device used to make 1. Calls across a

More information

TD : Compilateur ml2java semaine 3

TD : Compilateur ml2java semaine 3 Module 4I504-2018fev TD 3 page 1/7 TD : Compilateur ml2java semaine 3 Objectif(s) 22 février 2018 Manipulation d un traducteur de code ML vers Java. 1 ML2Java Exercice 1 Structure du runtime 1. Déterminer

More information

P U B L I C A T I O N I N T E R N E N 1878

P U B L I C A T I O N I N T E R N E N 1878 I R I P U B L I C A T I O N I N T E R N E N 1878 S INSTITUT DE RECHERCHE EN INFORMATIQUE ET SYSTÈMES ALÉATOIRES A CACHING AND SCHEDULING MECHANISMS FOR H.264 VIDEO FLOW DELIVERY OVER DISCONTINUOUS COVERAGE

More information

Avaya E169 IP Media Station Quick Reference

Avaya E169 IP Media Station Quick Reference Avaya E169 IP Media Station Quick Reference Setup Assembling the media station Release 1.1 February 2015 For detailed procedures, see Using the Avaya E169 IP Media Station. 1. Remove the parts from the

More information

Sun Java Enterprise System 2003Q4 Deployment Example Series: Evaluation Scenario

Sun Java Enterprise System 2003Q4 Deployment Example Series: Evaluation Scenario Sun Java System Sun Java Enterprise System 2003Q4 Deployment Example Series: Evaluation Scenario Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054 U.S.A. Part No: 817-5419-10 Copyright 2004

More information

Guidelines to write and submit your contribution

Guidelines to write and submit your contribution Guidelines to write and submit your contribution Submission deadlines: > Declaration of intent: October 15 th, 2017 > Extended abstract submission: November 20 th, 2017 >> extended to November 27! isrivers@graie.org

More information

Home center SMS integration

Home center SMS integration Home center 2.7.3+ SMS integration The SMS functionality is available exclusively on the Home center interface Server (VMBHIS or HIS) More info http://www.homecenter.be Revision 02-08-2015 Home center

More information

Accessible depuis une interface web, OCS va permettre de visualiser l'inventaire de votre parc.

Accessible depuis une interface web, OCS va permettre de visualiser l'inventaire de votre parc. OCS Inventory Qu'est-ce que OCS Inventory? OCS Inventory NG (Open Computers and Software Inventory NextGeneration), est un outil permettant d'effectuer un inventaire automatisé d'un parc informatique.

More information

CASE STUDY 3-D FLOW MODELING OF THE SNC LAVALIN EARTH DAM

CASE STUDY 3-D FLOW MODELING OF THE SNC LAVALIN EARTH DAM CANADIAN DAM ASSOCIATION ASSOCIATION CANADIENNE DES BARRAGES CDA 2017 Annual Conference Congrès annuel 2017 de l ACB Kelowna, BC, Canada 2017 Oct 16-18 CASE STUDY 3-D FLOW MODELING OF THE SNC LAVALIN EARTH

More information

Dataspaces: A New Abstraction for Data Management. Mike Franklin, Alon Halevy, David Maier, Jennifer Widom

Dataspaces: A New Abstraction for Data Management. Mike Franklin, Alon Halevy, David Maier, Jennifer Widom Dataspaces: A New Abstraction for Data Management Mike Franklin, Alon Halevy, David Maier, Jennifer Widom Today s Agenda Why databases are great. What problems people really have Why databases are not

More information