overcome the fragmentation of multiple data formats and communication protocols;

Size: px
Start display at page:

Download "overcome the fragmentation of multiple data formats and communication protocols;"

Transcription

1 Semantic Transformations for Rail Transportation Newsletter October 2018 INTRODUCTION AND SCOPE The primary objective of the ST4RT (Semantic Transformations for Rail Transportation) project is to develop a demonstrator tool that will provide ontology-based transformations between different specifications and protocols, resulting in enhanced semantic interoperability between disparate, heterogeneous legacy systems. Such transformation technology is a powerful tool that aims to allow the project to meet the challenge to overcome the complex misalignment of eco-system services due to differences in business models and legacy systems. The Semantic Transformation addresses fundamental obstacles to interoperability and, if widely deployed, will be able to: overcome the fragmentation of multiple data formats and communication protocols; connect multi-modal providers and the services sectors; lower the cost of accessing data that is openly discoverable but of low quality or availability; maximise growth potential for the development of new products and services by removing ICT systems incompatibility, e.g. enabling market players and new entrants capabilities, thereby reducing the cost and time-to-market for the ICT integration This project has received funding from the European Union s Horizon 2020 research and innovation under grant agreement No:

2 ST4RT INTERACTION WITH SHIFT2RAIL The scope of ST4RT project is to fill in a specific role within the fourth Shift2Rail Innovation Programme related to Passenger Services (IP4) by providing the transformation technology which is necessary to assure that technical interoperability can be deployed effectively and cost-efficiently by market actors in order to create service offerings that substantially improve mobility. ST4RT is one of the 1st Open Call projects of Shift2Rail and as shown in the figure below, it built on the work that was carried out in the IT2Rail lighthouse project and will also feed future Shift2Rail projects. Most of the ST4RT project partners were also involved in IT2Rail, which has eased the knowledge transfer needed for such collaborative projects TRL1 TRL2 TRL3 TRL4 TRL5 TRL6 TRL7 TRL8 TRL9 SHIFT2RAIL - IP4 IT2Rail GoF4R ST4RT White Paper Target Market ATTRACkTIVE CONNECTIVE COHESIVE My-Trac FUTURE PROJECT Figure 1: ST4RT interaction with Shift2Rail The transformation technology proposed by ST4RT is essential to achieving the goals for the Interoperability Framework (IF) that will provide the right tools in order to introduce seamless mobility services, foster the development of multimodal travel services and help to overcome the obstacles currently impeding the development of market innovation and limiting a large acceptance of the semantic web for transportation. 2

3 DESIGN OF IF CONVERTERS Interoperability refers to the ability of devices or systems to participate in the coordinated execution of tasks and functions in some business process, in which data/information exchange happens in a transparent way, according to common protocols and formats. Interoperability is achieved when the partners involved in the data/information exchange agree on the common information model and on the interfaces between their systems. Interoperability can be and typically is achieved at the syntactic level. However, a full interoperability should be sought at semantic level i.e., when interoperating systems are able to interpret the exchanged information automatically and meaningfully, so that exchanged messages are unambiguously defined and understood by the different parties. The ST4RT project addresses the issue of interoperability through the creation of an explicit, formal, shareable, machinereadable and computable description of the semantic reference model associated with data descriptions and exchanges. The ultimate goal is to allow for a higher degree of automation of distributed processes across multiple data formats and spanning unspecified actors. These formal, explicit, machine-readable descriptions, in the form of domain ontologies, are maintained, stored and made accessible by the ontology repository provided by the Interoperability Framework and used to annotate web services in the Interoperability Framework s semantic web service repository. Figure 2 summarises the general approach for semantic interoperability that is adopted in the ST4RT project. Two different specifications A and B are semantically annotated in order to create mappings from their data models to the global reference ontology currently represented by IT2Rail ontology, but possibly extended to a network of interrelated domain ontologies. The resulting mappings are the basis for the semantic transformations of ST4RT, so that data expressed in the two specifications can be converted into their respective ontological version. (reference ontology) (Standard A) (Standard B) Figure 2: ST4RT approach to semantic interoperability Whenever two systems that adopt the different specifications A and B such as, for example, those that are used as case studies in the ST4RT project, that is the Full Service Model 1 (FSM) specification and the XML version of the TAP-TSI 918 specification 2 need to exchange information, the semantic transformation takes place. As in the depicted example, a message originally expressed with regards to specification A because it is generated by a system adopting specification A is lifted to its ontological version, by means of the mapping between specification A and the reference ontology; once in its ontological counterpart, the message can then be lowered to a message expressed with regards to specification B, by

4 means of its respective mapping to the reference ontology, and can be consumed by the target system. Of course, the same procedure can be followed when the message exchange is initiated by the system adopting specification B. As mentioned above, the overarching idea is to annotate legacy data representations to be able to match the legacy concepts to those of the reference ontology, and vice-versa. In the ST4RT approach, the assumption is that legacy data representations and the corresponding data instances are given in terms of specification technologies, such as XSD 3 and XML 4. Figure 3 shows the lifting/lowering process in the case where for both the source and target specifications the data representation is defined through XSD files. Notice that the reference ontology will usually be an integration of several ontologies, each defining a separate set of concepts. XML (Source) JAXB Unmarshal Java Object (Source) SPARQL XSDs JAXB Auto Generate Java Classes Intermediate Ontology Named Graph XML (Target) JAXB Marshal Java Object (Target) SPARQL Lifting Transformation: Lowering Transformation: One Time Transformation: Figure 3: Approach workflow in the case where source and target specifications are defined through XSD files The starting point of the approach is that data schema definitions given in terms of XSD files are first translated into declarations in the Java programming language, which can be done automatically through existing frameworks such as JAXB 5. Then, the declarations of Java classes, methods and attributes are annotated to match them with concepts in the reference ontology. For example, Java classes, which capture data types defined in XSD files, are usually matched with classes of elements in the ontology, as it occurs in the following annotation, which maps the ContactInformation concept from the FSM specification to the Passenger class of the customer:passenger ) public class ContactInformation extends FSMID The annotated Java code is used to produce, during the lifting phase at runtime, sets of RDF (subject, predicate, object) triples (that is, a named graph) conforming to the reference ontology, starting from XML files conforming to the XSD definitions of the source specification. The Java-based annotations are also used to produce, during the lowering phase, XML files obeying the XSD definition of the target specification from the named graph created during the lifting phase. In addition to annotation shown above, the ST4RT approach defines other annotations to match concepts from legacy specifications to reference ontology (and vice versa), and in particular@rdfproperty to transform attributes into predicates, which allows for the definition of powerful SPAQRL 6 queries that are useful to perform more complicated mappings

5 REFERENCE IMPLEMENTATION OF IF CONVERTERS The design of the Interoperability Framework is based on the provision of a set of semantic interoperability services that can be deployed in multiple configurations, and that do not mandate a specific set of communication protocols or frameworks, leaving the choice of deployment strategies to partners. A ST4RT converter can play a central role in the Interoperability Framework, since it can be embedded as a library to implement message conversion inside an enterprise service bus or in a dedicated Web Service. Figure 4 gives an overview of the main layers of a ST4RT converter, which are briefly described in the following. ST4RT Converter Process-to-process conversion Message-to-message conversion RDF Lifting / Lowering Framework Figure 4: Overview of the layers of a ST4RT converter The RDF Lifting and Lowering framework provides Java Persistence API Architecture (JPA)-like capabilities extending it with the ability to operate on triple stores i.e., on database systems designed for storage and retrieval of RDF statements ( triples ) through semantic queries. Much as JPA annotations on Java classes provide automatic object-relational mappings from these classes to relational database schemas and vice-versa, the RDF framework provides automatic mappings to/from RDF statements. This enables the developer to delegate the mechanics of connection, input/output and storage/retrieval of the data across the network to the framework, while concentrating on the manipulation in pure Java of objects and relationships which, unlike the JPA entities, represent logical statements connected to the domain s axiomatic description of the domain s ontology. For example, triples generated by a SPARQL query as a result of logical inference i.e., new logical statements inferred based on the axioms and the existing data are automatically instantiated as Java objects and relationships and are therefore available for ordinary programming. The message-to-message conversion layer is built on top of the lifting and lowering capabilities and is able to manage a simple request/response business process. Such feature is implemented by introducing a communication context and by letting developers store intermediate triples inside a temporary RDF repository. The repository also hosts domain ontologies and lookup data (RDF datasets representing nearly static assets such as Stop Places and Locations). It becomes therefore possible to create the response message not just according to data provided by the destination service, but also according to the corresponding request. This is mandatory for converting messages whenever a session is defined. 5

6 ConvertSD JAXB Converter Resources loadsxml() unmarshal(xmlfile) ref ref lowersd marshal(javaobject) loadtxml() savexml() Figure 5: General conversion mechanism As the UML Sequence Diagram depicted in Figure 5 shows, first the XML file conforming to the source data representation (e.g., FSM) is loaded, and it is used by the JAXB framework to instantiate a corresponding Java object. Then, the ST4RT converter uses the annotations defined for the source specification, and additional resources such as repositories of RDF triples on which to run SPARQL queries, to lift the Java object to the integrated ontology. After the lifting process has been completed, a new Java object, capturing the concepts of the target specification (e.g., TAP-TSI 918 XML) is instantiated, and it is filled out with the relevant information during the lowering phase (again, by exploiting resources such as SPARQL endpoints). Finally, the Java object is used by the JAXB framework to create an XML file that conforms to the target specification. 6

7 DEMONSTRATORS HEROS platform The first of the two demonstrators makes use of the HEROS platform provided by Hit Rail. HEROS is a tool presenting a web services interface capable of converting booking messages expressed in the format defined by the Technical Document B.5 of TAP TSI into the 918 XML UIC 7 specification and vice versa. The chosen use case is a reservation for a berth in a night train, with different parameters. The initial request in FSM 8 syntax is converted by the ST4RT converter into 918 syntax. The resulting 918 request is automatically answered by Boomerang, a tool provided by Hit Rail; this answer is passed back to the converter that converts it into an FSM response (attribution of the berth to the customer). The necessary technical preparatory work consisted in adapting the Hardware/Software environment where to run the demo, defining the expected functional results, defining the Key Performance Indicators and the metrics to evaluate the results, storing the sample bookings to be used in the demo in the IF repository, creating the logical connection between the HEROS platform and the reference transformation mappings produced in the previous project phases. The actual tests have then been started, using a reporting system where to store all the results of tests, in order to support the evaluation to be performed in the final phase of the project. The final report will collect the results of the testing activity and compare the results vs KPI and metrics previously defined. IT2Rail environment The second demonstrator has been developed as a merging of the ST4RT converter with the Interoperability Framework created by the IT2Rail Lighthouse project. Its essential purpose is to prove one of the basic design principles of the Shift2Rail IP4 innovation program, namely the ability to insulate any application from the underlying mechanics of interoperability allowing a wide choice of architectural and deployment options to networked participants in the provision of seamless multi-modal mobility services. The fundamental point of the second demonstrator is to re-use, unchanged, the ST4RT converter operating on the first pilot, but allowing it to work across distributed semantic graph spanning the world wide web. This principle is illustrated in the following figure 6: Process-to-process conversion Message-to-message conversion RDF Lifting / Lowering Framework Message A Lifting inferred graph Message B Lowering message A graph The «web of data» domain ontology message B graph «External» graphs Stop places Product code list Reservation systems Countries... etc Figure 6: Distributed semantic graph layer

8 The top three layers of Fig. 4 Overview of the layers of a ST4RT converter, i.e. the ST4RT Converter itself, remain unchanged, and through a graph federation mechanism developed for the demonstrator, operate on a set of distributed graphs linked across the world wide web (the web of data ). The use of local or remote federated graphs is controlled by configuration parameters of the RDF Lifting / Lowering framework, so that both options are available. This adds an important feature to the converter, in that it eliminates the need to obtain and pre-load external data before operation: this is essential from a business process standpoint, in that the network of participants can be open to members joining or leaving the network at their own pace without centralized control. In addition, the ability to operate on a distributed semantic graph allows the Lifting and Lowering phases of the conversion to be potentially executed by different networked systems physically remote to one-another: it would be possible, therefore, to execute Lifting within the client process and Lowering at the server, or to select deployment scenarios. With this new capability available the ST4RT converter is now able to work as an additional component of the Interoperability Framework. To demonstrate this the second pilot uses the ST4RT converter in two complementary scenarios: in the first, an FSM client initiates a PreBooking request answered by a TAP-TSI server acting the booking provider role, in the second the roles are reversed, with the TAP-TSI client initating a Reservation Request answered by an FSM booking provider. FSM Client scenario FSM «PreBooking» message TAP-TSI Reservation Message FSM client ST4RT Converter TAP-TSI Processor FSM «offering» message IT2Rail Travel Expert Broker IT2Rail Triple Store PICO message Trenitalia Travel Expert IT2Rail Ontology Repository Figure 7: Second demonstration FSM Client / TAP-TSI server scenario 8

9 An FSM client used the IT2Rail Travel Expert Broker to obtain offers from the Trenitalia PICO Commercial platforms (depicted in orange) and sends them for pre-booking to a TAP-TSI processor (depicted in light blue), which plays the role of the Boomerang in the first demonstration. All three participating applications, the FSM client, the Trenitalia Travel Expert and the TAP-TSI processor, generate and consume messages in different formats, but interoperability is ensured through semantic conversion at the Travel Expert Broker, for FSM/PICO conversion, and at the ST4RT Converter, for FSM/TAP-TSI conversion. Both conversion mechanisms use the same ontology, served by the IT2Rail ontology repository, and the Stop Place, Reservation systems, Product code lists and Country graphs stored on the IT2Rail triple store and other linked data sources, which all appear to all applications as a single distributed graph hosted on the world wide web. No static data needs to be moved/copied to any application for them to operate, and all applications are in fact seamlessly interconnected using a shared data base which is, in fact, the semantic web itself. The deployment of the scenario consists solely in the configuration of the ST4RT converter to use the federated graphs and in its installation, as a web archive (WAR) on any web server container. TAP-TSI Client scenario TAP-TSI Reservation request / response FSM «PreBooking» request / response TAP-TSI client ST4RT Converter FSM Simulator IT2Rail Triple Store IT2Rail Ontology Repository Figure 8: Second demonstration TAP-TSI Client / FSM server scenario As depicted in Fig. 8, in this second scenario the roles are reversed in that a TAP-TSI client initiates a reservation process with a remote FSM capable booking processor while the interoperability mechanism is unchanged. Due to the unavailability of a live FSM-capable booking engine for the project, the FSM role is played by an FSM simulator component that exposes an FSM specification compliant PreBookig operation web service on a remote system hosted by Oltis Group. The FSM Simulator operates as the Boomerang service in the first pilot but handles FSM rather than TAP-TSI messages. 9

10 POTENTIAL BARRIERS As mentioned earlier, the ST4RT approach relies on the idea that legacy data representations need to be suitably annotated to match the concepts therein with those of the reference ontology - both for lifting and lowering purposes. The annotation process requires a certain level of expertise in various areas. In particular, expertise in the logical formalization of the transport domain s machine-readable ontology, and specifically in the concepts being handled by the specifications, is a must. In addition, a good knowledge of semantic technologies, such as for example the SPARQL language, is also necessary, at least for non-trivial mappings, which typically require the writing of suitable SPARQL queries. In addition, the ST4RT approach currently requires annotations to be placed in Java classes representing the concepts comprised in the specification; whereas this does not entail that knowledge of the programming language itself is necessary, it does at least make the process of actually associating annotations with concepts a bit cumbersome, and this could deter some potential users from adopting the ST4RT approach to interoperability. Several different solutions can be adopted to overcome these barriers, for example to ease the actual process of writing annotations and adding them in the right places in files, but they are outside of the scope of the ST4RT project, and are left for future work. PROJECT STRUCTURE The diagram below shows how the project is structured into the five different Work Packages. WP1 Project Management WP2 WP5 of Interoperability Framework Converters WP3 Design of Interoperability Framework Converters WP4 Reference of Interoperability Framework Converters Figure 9: Project structure of ST4RT WP3 has produced the conceptual design of the converter-generation procedure, whilst WP4 has studied the best approach to implementation of the design, including a selection of tools and frameworks, and provided a specific implementation of the design with the support of established software developer partners active in the provision of solutions and services to the Rail Industry. During the second half of the project, WP5 has analysed the selected target use case, developed the test cases and performance measures, and implemented the actual demonstration scenarios providing quantitative analysis of the results. 10

11 NOTES 11

12 PARTNERS PROJECT COORDINATOR TECHNICAL LEADER THE EUROPEAN RAIL INDUSTRY TM PROJECT PARTNERS FACTS AND FIGURES Total Budget 1 million (100% EU funded) Duration 24 months Project Start Date 1st November 2016 Project End Date 31st October 2018 Number of Partners 8 Grant Agreement No CONTACT US Project Coordinator Stefanos Gogos (UNIFE) Stefanos.gogos@unife.org This project has received funding from the European Union s Horizon 2020 research and innovation under grant agreement No:

INtelligent solutions 2ward the Development of Railway Energy and Asset Management Systems in Europe.

INtelligent solutions 2ward the Development of Railway Energy and Asset Management Systems in Europe. INtelligent solutions 2ward the Development of Railway Energy and Asset Management Systems in Europe. Introduction to IN2DREAMS The predicted growth of transport, especially in European railway infrastructures,

More information

APPLYING KNOWLEDGE BASED AI TO MODERN DATA MANAGEMENT. Mani Keeran, CFA Gi Kim, CFA Preeti Sharma

APPLYING KNOWLEDGE BASED AI TO MODERN DATA MANAGEMENT. Mani Keeran, CFA Gi Kim, CFA Preeti Sharma APPLYING KNOWLEDGE BASED AI TO MODERN DATA MANAGEMENT Mani Keeran, CFA Gi Kim, CFA Preeti Sharma 2 What we are going to discuss During last two decades, majority of information assets have been digitized

More information

Deliverable Final Data Management Plan

Deliverable Final Data Management Plan EU H2020 Research and Innovation Project HOBBIT Holistic Benchmarking of Big Linked Data Project Number: 688227 Start Date of Project: 01/12/2015 Duration: 36 months Deliverable 8.5.3 Final Data Management

More information

Module Shared API and Core Services

Module Shared API and Core Services Secure Provisioning of Cloud Services based on SLA Management SPECS Project - Deliverable 1.4.1 Module Shared API and Core Services Version 1.1 15 February 2016 The activities reported in this deliverable

More information

IP 4. For additional inputs regarding IP4 vision and organization, please refer to the Multi Annual Action Plan: MAAP in Shift2Rail web site (pdf)

IP 4. For additional inputs regarding IP4 vision and organization, please refer to the Multi Annual Action Plan: MAAP in Shift2Rail web site (pdf) IP4 is specifying a bench of services on a eco system web of transportation, which provides to the passengers a seamless access for the preparation and a continuous support in their multimodal journey

More information

1 What-is-anopen-platform/

1   What-is-anopen-platform/ universaal IOT a Technical Overview Topics Semantic Discovery & Interoperability Service Broker & Orchestrator Context Broker, Context History Entrepôt, & Semantic Reasoning Human-Environment Interaction

More information

PROJECT PERIODIC REPORT

PROJECT PERIODIC REPORT PROJECT PERIODIC REPORT Grant Agreement number: 257403 Project acronym: CUBIST Project title: Combining and Uniting Business Intelligence and Semantic Technologies Funding Scheme: STREP Date of latest

More information

case study The Asset Description Metadata Schema (ADMS) A common vocabulary to publish semantic interoperability assets on the Web July 2011

case study The Asset Description Metadata Schema (ADMS) A common vocabulary to publish semantic interoperability assets on the Web July 2011 case study July 2011 The Asset Description Metadata Schema (ADMS) A common vocabulary to publish semantic interoperability assets on the Web DISCLAIMER The views expressed in this document are purely those

More information

COMP9321 Web Application Engineering

COMP9321 Web Application Engineering COMP9321 Web Application Engineering Semester 2, 2015 Dr. Amin Beheshti Service Oriented Computing Group, CSE, UNSW Australia Week 12 (Wrap-up) http://webapps.cse.unsw.edu.au/webcms2/course/index.php?cid=2411

More information

Infrastructure for Multilayer Interoperability to Encourage Use of Heterogeneous Data and Information Sharing between Government Systems

Infrastructure for Multilayer Interoperability to Encourage Use of Heterogeneous Data and Information Sharing between Government Systems Hitachi Review Vol. 65 (2016), No. 1 729 Featured Articles Infrastructure for Multilayer Interoperability to Encourage Use of Heterogeneous Data and Information Sharing between Government Systems Kazuki

More information

The NEPOMUK project. Dr. Ansgar Bernardi DFKI GmbH Kaiserslautern, Germany

The NEPOMUK project. Dr. Ansgar Bernardi DFKI GmbH Kaiserslautern, Germany The NEPOMUK project Dr. Ansgar Bernardi DFKI GmbH Kaiserslautern, Germany ansgar.bernardi@dfki.de Integrated Project n 27705 Priority 2.4.7 Semantic knowledge based systems NEPOMUK is a three-year Integrated

More information

COMP9321 Web Application Engineering

COMP9321 Web Application Engineering COMP9321 Web Application Engineering Semester 1, 2017 Dr. Amin Beheshti Service Oriented Computing Group, CSE, UNSW Australia Week 12 (Wrap-up) http://webapps.cse.unsw.edu.au/webcms2/course/index.php?cid=2457

More information

An Archiving System for Managing Evolution in the Data Web

An Archiving System for Managing Evolution in the Data Web An Archiving System for Managing Evolution in the Web Marios Meimaris *, George Papastefanatos and Christos Pateritsas * Institute for the Management of Information Systems, Research Center Athena, Greece

More information

OpenBudgets.eu: Fighting Corruption with Fiscal Transparency. Project Number: Start Date of Project: Duration: 30 months

OpenBudgets.eu: Fighting Corruption with Fiscal Transparency. Project Number: Start Date of Project: Duration: 30 months OpenBudgets.eu: Fighting Corruption with Fiscal Transparency Project Number: 645833 Start Date of Project: 01.05.2015 Duration: 30 months Deliverable 4.1 Specification of services' Interfaces Dissemination

More information

SECTION 10 EXCHANGE PROTOCOL

SECTION 10 EXCHANGE PROTOCOL SECTION 10 EXCHANGE PROTOCOL The ADMS specification will facilitate the creation of a federation of disparate semantic asset repositories at the EU level. This federation will consist of Joinup setting

More information

Business Requirements Specification for the. Nomination and Matching Procedures. In Gas Transmission Systems (NOM BRS)

Business Requirements Specification for the. Nomination and Matching Procedures. In Gas Transmission Systems (NOM BRS) 27 May 2015 Rev14 1 2 3 4 for the In Gas Transmission Systems (NOM BRS) 5 6 Version 0 Revision 14 2015-05-27 7 8 ENTSOG AISBL; Av. de Cortenbergh 100, 1000-Brussels; Tel: +32 2 894 5100; Fax: +32 2 894

More information

Reasoning on Business Processes and Ontologies in a Logic Programming Environment

Reasoning on Business Processes and Ontologies in a Logic Programming Environment Reasoning on Business Processes and Ontologies in a Logic Programming Environment Michele Missikoff 1, Maurizio Proietti 1, Fabrizio Smith 1,2 1 IASI-CNR, Viale Manzoni 30, 00185, Rome, Italy 2 DIEI, Università

More information

Third public workshop of the Amsterdam Group and CODECS European Framework for C-ITS Deployment

Third public workshop of the Amsterdam Group and CODECS European Framework for C-ITS Deployment Third public workshop of the Amsterdam Group and CODECS European Framework for C-ITS Deployment 14 February 2017 Amsterdam Gerhard Menzel European Commission - DG MOVE EU Policy Tools Large-scale deployment

More information

1. Publishable Summary

1. Publishable Summary 1. Publishable Summary 1.1Project objectives and context Identity management (IdM) has emerged as a promising technology to distribute identity information across security domains. In e-business scenarios,

More information

A Generic Approach for Compliance Assessment of Interoperability Artifacts

A Generic Approach for Compliance Assessment of Interoperability Artifacts A Generic Approach for Compliance Assessment of Interoperability Artifacts Stipe Fustar Power Grid 360 11060 Parkwood Drive #2, Cupertino, CA 95014 sfustar@powergrid360.com Keywords: Semantic Model, IEC

More information

WHY WE NEED AN XML STANDARD FOR REPRESENTING BUSINESS RULES. Introduction. Production rules. Christian de Sainte Marie ILOG

WHY WE NEED AN XML STANDARD FOR REPRESENTING BUSINESS RULES. Introduction. Production rules. Christian de Sainte Marie ILOG WHY WE NEED AN XML STANDARD FOR REPRESENTING BUSINESS RULES Christian de Sainte Marie ILOG Introduction We are interested in the topic of communicating policy decisions to other parties, and, more generally,

More information

NEXOF-RA NESSI Open Framework Reference Architecture IST- FP

NEXOF-RA NESSI Open Framework Reference Architecture IST- FP NEXOF-RA NESSI Open Framework Reference Architecture IST- FP7-216446 Deliverable D7.4 RA Specification Sample Siemens AG HP Engineering Thales Due date of deliverable: 01/03/2009 Actual submission date:

More information

ICT-SHOK Project Proposal: PROFI

ICT-SHOK Project Proposal: PROFI ICT-SHOK Project Proposal: PROFI Full Title: Proactive Future Internet: Smart Semantic Middleware Overlay Architecture for Declarative Networking ICT-SHOK Programme: Future Internet Project duration: 2+2

More information

THE CO-CITIES PACKAGE INTRODUCTION TO VERSION 1 STATUS NOVEMBER 2014

THE CO-CITIES PACKAGE INTRODUCTION TO VERSION 1 STATUS NOVEMBER 2014 THE CO-CITIES PACKAGE INTRODUCTION TO VERSION 1 STATUS NOVEMBER 2014 This Document provides a short description of the Co-Cities package, a data interface called (Commonly Agreed Interface) which was developed

More information

D WSMO Data Grounding Component

D WSMO Data Grounding Component Project Number: 215219 Project Acronym: SOA4All Project Title: Instrument: Thematic Priority: Service Oriented Architectures for All Integrated Project Information and Communication Technologies Activity

More information

Contents. G52IWS: The Semantic Web. The Semantic Web. Semantic web elements. Semantic Web technologies. Semantic Web Services

Contents. G52IWS: The Semantic Web. The Semantic Web. Semantic web elements. Semantic Web technologies. Semantic Web Services Contents G52IWS: The Semantic Web Chris Greenhalgh 2007-11-10 Introduction to the Semantic Web Semantic Web technologies Overview RDF OWL Semantic Web Services Concluding comments 1 See Developing Semantic

More information

CO Java EE 7: Back-End Server Application Development

CO Java EE 7: Back-End Server Application Development CO-85116 Java EE 7: Back-End Server Application Development Summary Duration 5 Days Audience Application Developers, Developers, J2EE Developers, Java Developers and System Integrators Level Professional

More information

FIPA Agent Software Integration Specification

FIPA Agent Software Integration Specification FOUNDATION FOR INTELLIGENT PHYSICAL AGENTS FIPA Agent Software Integration Specification Document title FIPA Agent Software Integration Specification Document number XC00079A Document source FIPA Architecture

More information

Deliverable Initial Data Management Plan

Deliverable Initial Data Management Plan EU H2020 Research and Innovation Project HOBBIT Holistic Benchmarking of Big Linked Data Project Number: 688227 Start Date of Project: 01/12/2015 Duration: 36 months Deliverable 8.5.1 Initial Data Management

More information

Proposal for Implementing Linked Open Data on Libraries Catalogue

Proposal for Implementing Linked Open Data on Libraries Catalogue Submitted on: 16.07.2018 Proposal for Implementing Linked Open Data on Libraries Catalogue Esraa Elsayed Abdelaziz Computer Science, Arab Academy for Science and Technology, Alexandria, Egypt. E-mail address:

More information

MISTRAL WORKSHOP #1 Trends on future train-to-wayside communications Barcelona, 07/07/2017

MISTRAL WORKSHOP #1 Trends on future train-to-wayside communications Barcelona, 07/07/2017 MISTRAL WORKSHOP #1 Trends on future train-to-wayside communications Barcelona, 07/07/2017 INDEX Introduction: MISTRAL Project Future technological trends for train-to-wayside communications Future economic

More information

Accelerate Your Enterprise Private Cloud Initiative

Accelerate Your Enterprise Private Cloud Initiative Cisco Cloud Comprehensive, enterprise cloud enablement services help you realize a secure, agile, and highly automated infrastructure-as-a-service (IaaS) environment for cost-effective, rapid IT service

More information

GRIDS INTRODUCTION TO GRID INFRASTRUCTURES. Fabrizio Gagliardi

GRIDS INTRODUCTION TO GRID INFRASTRUCTURES. Fabrizio Gagliardi GRIDS INTRODUCTION TO GRID INFRASTRUCTURES Fabrizio Gagliardi Dr. Fabrizio Gagliardi is the leader of the EU DataGrid project and designated director of the proposed EGEE (Enabling Grids for E-science

More information

The Evolution of Java Persistence

The Evolution of Java Persistence The Evolution of Java Persistence Doug Clarke Oracle Ottawa, Canada Keywords: Java, Persistence, JPA, JAXB, JSON, REST Introduction The data access requirements of today s Java applications keep expanding

More information

An Architecture for Semantic Enterprise Application Integration Standards

An Architecture for Semantic Enterprise Application Integration Standards An Architecture for Semantic Enterprise Application Integration Standards Nenad Anicic 1, 2, Nenad Ivezic 1, Albert Jones 1 1 National Institute of Standards and Technology, 100 Bureau Drive Gaithersburg,

More information

D2.5 Data mediation. Project: ROADIDEA

D2.5 Data mediation. Project: ROADIDEA D2.5 Data mediation Project: ROADIDEA 215455 Document Number and Title: D2.5 Data mediation How to convert data with different formats Work-Package: WP2 Deliverable Type: Report Contractual Date of Delivery:

More information

Towards the Semantic Desktop. Dr. Øyvind Hanssen University Library of Tromsø

Towards the Semantic Desktop. Dr. Øyvind Hanssen University Library of Tromsø Towards the Semantic Desktop Dr. Øyvind Hanssen University Library of Tromsø Agenda Background Enabling trends and technologies Desktop computing and The Semantic Web Online Social Networking and P2P Computing

More information

CSc 8711 Report: OWL API

CSc 8711 Report: OWL API CSc 8711 Report: OWL API Syed Haque Department of Computer Science Georgia State University Atlanta, Georgia 30303 Email: shaque4@student.gsu.edu Abstract: The Semantic Web is an extension of human-readable

More information

BLU AGE 2009 Edition Agile Model Transformation

BLU AGE 2009 Edition Agile Model Transformation BLU AGE 2009 Edition Agile Model Transformation Model Driven Modernization for Legacy Systems 1 2009 NETFECTIVE TECHNOLOGY -ne peut être copiésans BLU AGE Agile Model Transformation Agenda Model transformation

More information

Advanced Grid Technologies, Services & Systems: Research Priorities and Objectives of WP

Advanced Grid Technologies, Services & Systems: Research Priorities and Objectives of WP Advanced Grid Technologies, Services & Systems: Research Priorities and Objectives of WP 2005-06 06 IST Call 5 Preparatory Workshop Brussels, 31 Jan 1 Feb 2005 Enabling application Max Lemke Deputy Head

More information

e-infrastructures in FP7 INFO DAY - Paris

e-infrastructures in FP7 INFO DAY - Paris e-infrastructures in FP7 INFO DAY - Paris Carlos Morais Pires European Commission DG INFSO GÉANT & e-infrastructure Unit 1 Global challenges with high societal impact Big Science and the role of empowered

More information

XML ALONE IS NOT SUFFICIENT FOR EFFECTIVE WEBEDI

XML ALONE IS NOT SUFFICIENT FOR EFFECTIVE WEBEDI Chapter 18 XML ALONE IS NOT SUFFICIENT FOR EFFECTIVE WEBEDI Fábio Ghignatti Beckenkamp and Wolfgang Pree Abstract: Key words: WebEDI relies on the Internet infrastructure for exchanging documents among

More information

TAF-TAP TSI Steering Committee Agenda item..: Presentation of the activities of the sector TAP TSI. Brussels, 24 June 2015

TAF-TAP TSI Steering Committee Agenda item..: Presentation of the activities of the sector TAP TSI. Brussels, 24 June 2015 TAF-TAP TSI Steering Committee Agenda item..: Presentation of the activities of the sector TAP TSI Brussels, TAP/TAF SteCo 24 June 2016 1 INDEX The Rail Sector complexity EU Approaches for a new framework

More information

Digital Platforms for 'Interoperable and smart homes and grids'

Digital Platforms for 'Interoperable and smart homes and grids' 25 October 2017, Brussels Digital Platforms for 'Interoperable and smart homes and grids' Focus Area "Digitising and Transforming European Industry and Services by Svet Mihaylov DG CONNECT WP 2018-2020

More information

ehealth Network ehealth Network Governance model for the ehealth Digital Service Infrastructure during the CEF funding

ehealth Network ehealth Network Governance model for the ehealth Digital Service Infrastructure during the CEF funding ehealth Network Governance model for the ehealth Digital Service Infrastructure during the CEF funding 1 The ehealth Network is a voluntary network, set up under article 14 of Directive 2011/24/EU. It

More information

AssetWise to OpenText PoC Closeout Report

AssetWise to OpenText PoC Closeout Report AssetWise to OpenText PoC Closeout Report www.bentley.com Page 1 of 8 AssetWise Interoperability Architecture 1. References... 3 2. Glossary... 3 3. Revision History... 3 4. Introduction and Overview...

More information

An aggregation system for cultural heritage content

An aggregation system for cultural heritage content An aggregation system for cultural heritage content Nasos Drosopoulos, Vassilis Tzouvaras, Nikolaos Simou, Anna Christaki, Arne Stabenau, Kostas Pardalis, Fotis Xenikoudakis, Eleni Tsalapati and Stefanos

More information

Introduction to Web Services & SOA

Introduction to Web Services & SOA References: Web Services, A Technical Introduction, Deitel & Deitel Building Scalable and High Performance Java Web Applications, Barish Service-Oriented Programming (SOP) SOP A programming paradigm that

More information

Cybersecurity. Quality. security LED-Modul. basis. Comments by the electrical industry on the EU Cybersecurity Act. manufacturer s declaration

Cybersecurity. Quality. security LED-Modul. basis. Comments by the electrical industry on the EU Cybersecurity Act. manufacturer s declaration Statement Comments by the electrical industry on the EU Cybersecurity Act manufacturer s declaration industrial security Cybersecurity Quality basis security LED-Modul Statement P January 2018 German Electrical

More information

CORA Technical Annex. ESSnet. WP3: Definition of the Layered Architecture. 3.2 Technical Annex. Statistics Netherlands

CORA Technical Annex. ESSnet. WP3: Definition of the Layered Architecture. 3.2 Technical Annex. Statistics Netherlands Statistics Netherlands WP3: Definition of the Layered Architecture 3.2 Technical Annex Technical Annex Partner in charge Statistics Netherlands Version.0 Date 2/0/200 2/0/200.0 of 6 Version Changes Date

More information

Introduction to Web Services & SOA

Introduction to Web Services & SOA References: Web Services, A Technical Introduction, Deitel & Deitel Building Scalable and High Performance Java Web Applications, Barish Web Service Definition The term "Web Services" can be confusing.

More information

Java EE 7: Back-End Server Application Development

Java EE 7: Back-End Server Application Development Oracle University Contact Us: Local: 0845 777 7 711 Intl: +44 845 777 7 711 Java EE 7: Back-End Server Application Development Duration: 5 Days What you will learn The Java EE 7: Back-End Server Application

More information

Part I: Future Internet Foundations: Architectural Issues

Part I: Future Internet Foundations: Architectural Issues Part I: Future Internet Foundations: Architectural Issues Part I: Future Internet Foundations: Architectural Issues 3 Introduction The Internet has evolved from a slow, person-to-machine, communication

More information

SDMX self-learning package No. 3 Student book. SDMX-ML Messages

SDMX self-learning package No. 3 Student book. SDMX-ML Messages No. 3 Student book SDMX-ML Messages Produced by Eurostat, Directorate B: Statistical Methodologies and Tools Unit B-5: Statistical Information Technologies Last update of content February 2010 Version

More information

Beginning To Define ebxml Initial Draft

Beginning To Define ebxml Initial Draft Beginning To Define ebxml Initial Draft File Name Version BeginningToDefineebXML 1 Abstract This document provides a visual representation of how the ebxml Architecture could work. As ebxml evolves, this

More information

Soumya Kanti Datta Research Engineer

Soumya Kanti Datta Research Engineer Testing Semantic Interoperability Soumya Kanti Datta Research Engineer Email dattas@eurecom.fr 22/03/2018 Testing Semantic Inteoperability 2 Roadmap Introduction Testing Semantic Interop Survey Conclusion

More information

Executive Summary for deliverable D6.1: Definition of the PFS services (requirements, initial design)

Executive Summary for deliverable D6.1: Definition of the PFS services (requirements, initial design) Electronic Health Records for Clinical Research Executive Summary for deliverable D6.1: Definition of the PFS services (requirements, initial design) Project acronym: EHR4CR Project full title: Electronic

More information

Standard Business Rules Language: why and how? ICAI 06

Standard Business Rules Language: why and how? ICAI 06 Standard Business Rules Language: why and how? ICAI 06 M. Diouf K. Musumbu S. Maabout LaBRI (UMR 5800 du CNRS), 351, cours de la Libération, F-33.405 TALENCE Cedex e-mail: {diouf, musumbu, maabout}@labri.fr

More information

Bridging the Gap between Semantic Web and Networked Sensors: A Position Paper

Bridging the Gap between Semantic Web and Networked Sensors: A Position Paper Bridging the Gap between Semantic Web and Networked Sensors: A Position Paper Xiang Su and Jukka Riekki Intelligent Systems Group and Infotech Oulu, FIN-90014, University of Oulu, Finland {Xiang.Su,Jukka.Riekki}@ee.oulu.fi

More information

Implementing the Army Net Centric Data Strategy in a Service Oriented Environment

Implementing the Army Net Centric Data Strategy in a Service Oriented Environment Implementing the Army Net Centric Strategy in a Service Oriented Environment Michelle Dirner Army Net Centric Strategy (ANCDS) Center of Excellence (CoE) Service Team Lead RDECOM CERDEC SED in support

More information

STS Infrastructural considerations. Christian Chiarcos

STS Infrastructural considerations. Christian Chiarcos STS Infrastructural considerations Christian Chiarcos chiarcos@uni-potsdam.de Infrastructure Requirements Candidates standoff-based architecture (Stede et al. 2006, 2010) UiMA (Ferrucci and Lally 2004)

More information

Deliverable 6.4. Initial Data Management Plan. RINGO (GA no ) PUBLIC; R. Readiness of ICOS for Necessities of integrated Global Observations

Deliverable 6.4. Initial Data Management Plan. RINGO (GA no ) PUBLIC; R. Readiness of ICOS for Necessities of integrated Global Observations Ref. Ares(2017)3291958-30/06/2017 Readiness of ICOS for Necessities of integrated Global Observations Deliverable 6.4 Initial Data Management Plan RINGO (GA no 730944) PUBLIC; R RINGO D6.5, Initial Risk

More information

Chapter 4. Fundamental Concepts and Models

Chapter 4. Fundamental Concepts and Models Chapter 4. Fundamental Concepts and Models 4.1 Roles and Boundaries 4.2 Cloud Characteristics 4.3 Cloud Delivery Models 4.4 Cloud Deployment Models The upcoming sections cover introductory topic areas

More information

H2020-LEIT-ICT WP European Data Infrastructure ICT-13 Supporting the emergence of data markets and the data economy

H2020-LEIT-ICT WP European Data Infrastructure ICT-13 Supporting the emergence of data markets and the data economy H2020-LEIT-ICT WP2018-2020 European Data Infrastructure ICT-13 Supporting the emergence of data markets and the data economy Kimmo Rossi DG CNECT.G1 Data Policy and Innovation Unit Problem statement Sharing

More information

An Approach for Accessing Linked Open Data for Data Mining Purposes

An Approach for Accessing Linked Open Data for Data Mining Purposes An Approach for Accessing Linked Open Data for Data Mining Purposes Andreas Nolle, German Nemirovski Albstadt-Sigmaringen University nolle, nemirovskij@hs-albsig.de Abstract In the recent time the amount

More information

Robin Wilson Director. Digital Identifiers Metadata Services

Robin Wilson Director. Digital Identifiers Metadata Services Robin Wilson Director Digital Identifiers Metadata Services Report Digital Object Identifiers for Publishing and the e-learning Community CONTEXT elearning the the Publishing Challenge elearning the the

More information

Reducing Consumer Uncertainty

Reducing Consumer Uncertainty Spatial Analytics Reducing Consumer Uncertainty Towards an Ontology for Geospatial User-centric Metadata Introduction Cooperative Research Centre for Spatial Information (CRCSI) in Australia Communicate

More information

SEXTANT 1. Purpose of the Application

SEXTANT 1. Purpose of the Application SEXTANT 1. Purpose of the Application Sextant has been used in the domains of Earth Observation and Environment by presenting its browsing and visualization capabilities using a number of link geospatial

More information

National Data Sharing and Accessibility Policy-2012 (NDSAP-2012)

National Data Sharing and Accessibility Policy-2012 (NDSAP-2012) National Data Sharing and Accessibility Policy-2012 (NDSAP-2012) Department of Science & Technology Ministry of science & Technology Government of India Government of India Ministry of Science & Technology

More information

Ontology Servers and Metadata Vocabulary Repositories

Ontology Servers and Metadata Vocabulary Repositories Ontology Servers and Metadata Vocabulary Repositories Dr. Manjula Patel Technical Research and Development m.patel@ukoln.ac.uk http://www.ukoln.ac.uk/ Overview agentcities.net deployment grant Background

More information

Toward Horizon 2020: INSPIRE, PSI and other EU policies on data sharing and standardization

Toward Horizon 2020: INSPIRE, PSI and other EU policies on data sharing and standardization Toward Horizon 2020: INSPIRE, PSI and other EU policies on data sharing and standardization www.jrc.ec.europa.eu Serving society Stimulating innovation Supporting legislation The Mission of the Joint Research

More information

Proposed Revisions to ebxml Technical. Architecture Specification v1.04

Proposed Revisions to ebxml Technical. Architecture Specification v1.04 Proposed Revisions to ebxml Technical Architecture Specification v1.04 Business Process Team 11 May 2001 (This document is the non-normative version formatted for printing, July 2001) Copyright UN/CEFACT

More information

2 The BEinGRID Project

2 The BEinGRID Project 2 The BEinGRID Project Theo Dimitrakos 2.1 Introduction Most of the results presented in this book were created within the BEinGRID project. BEinGRID, Business Experiments in GRID, is the European Commission

More information

TOOP Introducing The Once-Only Principle project

TOOP Introducing The Once-Only Principle project TOOP Introducing The Once-Only Principle project Digital Transport and Logistics Forum 5 th Plenary Meeting Robert Krimmer / 26 April 2017 / Brussels 1 Aim Explore and demonstrate the once-only principle

More information

From Open Data to Data- Intensive Science through CERIF

From Open Data to Data- Intensive Science through CERIF From Open Data to Data- Intensive Science through CERIF Keith G Jeffery a, Anne Asserson b, Nikos Houssos c, Valerie Brasse d, Brigitte Jörg e a Keith G Jeffery Consultants, Shrivenham, SN6 8AH, U, b University

More information

On the Design and Implementation of a Generalized Process for Business Statistics

On the Design and Implementation of a Generalized Process for Business Statistics On the Design and Implementation of a Generalized Process for Business Statistics M. Bruno, D. Infante, G. Ruocco, M. Scannapieco 1. INTRODUCTION Since the second half of 2014, Istat has been involved

More information

Workshop on Addressing the Barriers to IPv6 Deployment Spanish use case

Workshop on Addressing the Barriers to IPv6 Deployment Spanish use case Workshop on Addressing the Barriers to IPv6 Deployment Spanish use case Cristina Ramos cristinapilar.ramos@correo.gob.es Agenda Agenda IPv6 addressing plan Barriers Conclusions 1 Background Digital Agenda

More information

CREATE Compact REtrofit Advanced Thermal Energy storage. European Commission Archive 1x

CREATE Compact REtrofit Advanced Thermal Energy storage. European Commission Archive 1x Page: Page 2 of 21 Distribution list External TNO European Commission Archive 1x Change log Issue Date Pages Remark / changes Page 1 26.01.2016 21 First issue All Table of contents Background... 4 1 References...

More information

Extending SOA Infrastructure for Semantic Interoperability

Extending SOA Infrastructure for Semantic Interoperability Extending SOA Infrastructure for Semantic Interoperability Wen Zhu wzhu@alionscience.com ITEA System of Systems Conference 26 Jan 2006 www.alionscience.com/semantic Agenda Background Semantic Mediation

More information

Designing a System Engineering Environment in a structured way

Designing a System Engineering Environment in a structured way Designing a System Engineering Environment in a structured way Anna Todino Ivo Viglietti Bruno Tranchero Leonardo-Finmeccanica Aircraft Division Torino, Italy Copyright held by the authors. Rubén de Juan

More information

The CASPAR Finding Aids

The CASPAR Finding Aids ABSTRACT The CASPAR Finding Aids Henri Avancini, Carlo Meghini, Loredana Versienti CNR-ISTI Area dell Ricerca di Pisa, Via G. Moruzzi 1, 56124 Pisa, Italy EMail: Full.Name@isti.cnr.it CASPAR is a EU co-funded

More information

Semantic Interoperability of Basic Data in the Italian Public Sector Giorgia Lodi

Semantic Interoperability of Basic Data in the Italian Public Sector Giorgia Lodi Semantic Interoperability of Basic Data in the Italian Public Sector Giorgia Lodi SEMIC conference 2013 21 June 2013 Dublin (AgID) Created last year, AgID is a public body that merged three different existing

More information

SEMANTIC SOLUTIONS FOR OIL & GAS: ROLES AND RESPONSIBILITIES

SEMANTIC SOLUTIONS FOR OIL & GAS: ROLES AND RESPONSIBILITIES SEMANTIC SOLUTIONS FOR OIL & GAS: ROLES AND RESPONSIBILITIES Jeremy Carroll, Ralph Hodgson, {jeremy,ralph}@topquadrant.com This paper is submitted to The W3C Workshop on Semantic Web in Energy Industries

More information

Programming the Semantic Web

Programming the Semantic Web Programming the Semantic Web Steffen Staab, Stefan Scheglmann, Martin Leinberger, Thomas Gottron Institute for Web Science and Technologies, University of Koblenz-Landau, Germany Abstract. The Semantic

More information

Grid Computing with Voyager

Grid Computing with Voyager Grid Computing with Voyager By Saikumar Dubugunta Recursion Software, Inc. September 28, 2005 TABLE OF CONTENTS Introduction... 1 Using Voyager for Grid Computing... 2 Voyager Core Components... 3 Code

More information

Webinar Annotate data in the EUDAT CDI

Webinar Annotate data in the EUDAT CDI Webinar Annotate data in the EUDAT CDI Yann Le Franc - e-science Data Factory, Paris, France March 16, 2017 This work is licensed under the Creative Commons CC-BY 4.0 licence. Attribution: Y. Le Franc

More information

Army Data Services Layer (ADSL) Data Mediation Providing Data Interoperability and Understanding in a

Army Data Services Layer (ADSL) Data Mediation Providing Data Interoperability and Understanding in a Army Data Services Layer (ADSL) Data Mediation Providing Data Interoperability and Understanding in a SOA Environment Michelle Dirner Army Net-Centric t Data Strategy t (ANCDS) Center of Excellence (CoE)

More information

Dartgrid: a Semantic Web Toolkit for Integrating Heterogeneous Relational Databases

Dartgrid: a Semantic Web Toolkit for Integrating Heterogeneous Relational Databases Dartgrid: a Semantic Web Toolkit for Integrating Heterogeneous Relational Databases Zhaohui Wu 1, Huajun Chen 1, Heng Wang 1, Yimin Wang 2, Yuxin Mao 1, Jinmin Tang 1, and Cunyin Zhou 1 1 College of Computer

More information

EUDAT B2FIND A Cross-Discipline Metadata Service and Discovery Portal

EUDAT B2FIND A Cross-Discipline Metadata Service and Discovery Portal EUDAT B2FIND A Cross-Discipline Metadata Service and Discovery Portal Heinrich Widmann, DKRZ DI4R 2016, Krakow, 28 September 2016 www.eudat.eu EUDAT receives funding from the European Union's Horizon 2020

More information

Managing Learning Objects in Large Scale Courseware Authoring Studio 1

Managing Learning Objects in Large Scale Courseware Authoring Studio 1 Managing Learning Objects in Large Scale Courseware Authoring Studio 1 Ivo Marinchev, Ivo Hristov Institute of Information Technologies Bulgarian Academy of Sciences, Acad. G. Bonchev Str. Block 29A, Sofia

More information

DT-ICT : Big data solutions for energy

DT-ICT : Big data solutions for energy DT-ICT-11-2019: Big data solutions for energy info day Stefano Bertolo, DG CONNECT Mario Dionisio, DG ENER Scientific Programme Officers Who we are DG CONNECT, Unit G1 Data Policy and Innovation DG ENERGY,

More information

Contribution of OCLC, LC and IFLA

Contribution of OCLC, LC and IFLA Contribution of OCLC, LC and IFLA in The Structuring of Bibliographic Data and Authorities : A path to Linked Data BY Basma Chebani Head of Cataloging and Metadata Services, AUB Libraries Presented to

More information

(9A05803) WEB SERVICES (ELECTIVE - III)

(9A05803) WEB SERVICES (ELECTIVE - III) 1 UNIT III (9A05803) WEB SERVICES (ELECTIVE - III) Web services Architecture: web services architecture and its characteristics, core building blocks of web services, standards and technologies available

More information

DG CONNECT (Unit H5) Update on Data Centre Activities

DG CONNECT (Unit H5) Update on Data Centre Activities DG CONNECT (Unit H5) Update on Data Centre Activities Svetoslav Mihaylov Scientific/Technical Project Officer Smart Cities and Sustainability Directorate-General Communications Networks, Content and Technology

More information

FedX: A Federation Layer for Distributed Query Processing on Linked Open Data

FedX: A Federation Layer for Distributed Query Processing on Linked Open Data FedX: A Federation Layer for Distributed Query Processing on Linked Open Data Andreas Schwarte 1, Peter Haase 1,KatjaHose 2, Ralf Schenkel 2, and Michael Schmidt 1 1 fluid Operations AG, Walldorf, Germany

More information

Interoperability for electro-mobility (emobility)

Interoperability for electro-mobility (emobility) Interoperability for electro-mobility (emobility) SIS47 - Seamless provision of emobility services as a prerequisite for deployment of emobility Jean-Charles Pandazis ERTICO-ITS Europe emi3 coordinator

More information

How to adjust and improve the security level of infrastructure

How to adjust and improve the security level of infrastructure How to adjust and improve the security level of infrastructure Andrea Demadonna UNIFE Luigi Rucher ThalesGroup Andrea Bastianelli ThalesGroup UNIFE Florence, 25 November 2016 About UNIFE UNIFE represents

More information

Unlocking the full potential of location-based services: Linked Data driven Web APIs

Unlocking the full potential of location-based services: Linked Data driven Web APIs Unlocking the full potential of location-based services: Linked Data driven Web APIs Open Standards for Linked Organisations about Raf Buyle Ziggy Vanlishout www.vlaanderen.be/informatievlaanderen 6.4

More information

FIPA ACL Message Structure Specification

FIPA ACL Message Structure Specification 1 2 3 4 5 FOUNDATION FOR INTELLIGENT PHYSICAL AGENTS FIPA ACL Message Structure Specification 6 7 Document title FIPA ACL Message Structure Specification Document number XC00061E Document source FIPA TC

More information

BPAL: A Platform for Managing Business Process Knowledge Bases via Logic Programming

BPAL: A Platform for Managing Business Process Knowledge Bases via Logic Programming BPAL: A Platform for Managing Business Process Knowledge Bases via Logic Programming Fabrizio Smith, Dario De Sanctis, Maurizio Proietti National Research Council, IASI Antonio Ruberti - Viale Manzoni

More information