The Data Web and PLM Transforming PLM through Web Standards and Technologies

Size: px
Start display at page:

Download "The Data Web and PLM Transforming PLM through Web Standards and Technologies"

Transcription

1 The Data Web and PLM Transforming PLM through Web Standards and Technologies PDT Europe October 2017 Brian King - Koneksys

2 About Me 20 years experience in industry Software development background, consultancy for 8 years Tomtom, Facebook, Microsoft, Zemanta,. Mozilla - 5 yrs Community Manager NOW... Koneksys - Business Development OSLC Community Manager 2

3 Data Integration 3

4 Relationships between Engineering Data

5 Reality: Many Relationships between Engineering Data

6 Data Integration for Basic Queries

7 Data Integration for Traceability/Impact Analysis

8 Data Integration for decision-making Good overview = Better decisions Big projects fail because systems are becoming too complex, and this is becoming more common in large engineering organisations as they handle more and more data.

9 Benefits of Connecting Data Silos * * * * Recap: Integrated dataset Traceability Transparency Collaboration Better decisions Knowledge sharing * Icon by madebyoliver from are licensed by CC 3.0 BY 9

10 Why is Data Integration Complicated? Different APIs Java, REST, query languages Different Data Formats XML, JSON, CSV, binary Different Data Models Relational, Graph, Document Different Data IDs integer, path, guid 10

11 Why is Data Integration Expensive? Proprietary APIs and Data Formats Your Data Your Data Integration Solution Vendor $ $ 11

12 Current Data Integration Solutions in Engineering Product Lifecycle Management (PLM)/ Mechanical Engineering Application Lifecycle Management (ALM)/ Software Engineering Proprietary data integration solutions end up being new data silos Where is the integration? Enterprise Resource Planning (ERP)/ Manufacturing etc. Business Intelligence/ Analytics 12

13 The Web 13

14 Why Choose the Web for Data Integration? No license costs No vendor lock-in Mature and widely adopted infrastructure Abundance of Web specialists/developers Original vision of Tim Berners Lee, inventor of the Web 14

15 Hypertext + Internet = Web BEFORE THE WEB Hypertext System 1 WITH THE WEB Hypertext System 2 Problem: No Compatibility between hypertext systems + different protocols to access and connect documents on the internet (Gopher, WAIS, etc...) One global hypertext system = Web One protocol to access and connect documents 15

16 Web Server URL HTML Private/public Web <!DOCTYPE html> <html> <head> <title>requirement 112</title> </head> <body> <p>type = Requirement</p> <p>id = 112</p> <p>text = Only authorized users shall access the system </p> </body> </html> HTTP Web Server Doc Requirement id = 112 text = Only authorized users shall access the system 16

17 Data Web Server! URL { Only Change between regular Web and Data Web RDF Private/public Web "@context": { "text": " "id": " "Requirement": " }, "@id": " "@type": "Requirement", "id": "112", "text": "Only authorized users shall access the system" } HTTP Data Web Server Data Requirement Requirement id = 112 idtext = 112 = Only authorized users shall access the text = Only authorized users shall system access the system 17

18 Linked Data = Next Web = Web of Data = Data Web Examples Engineering: IBM - Jazz applications integrated through OSLC Open Initiative: Open Services for Lifecycle Collaboration (OSLC) Public knowledge graph: DBpedia Improving search results: Schema.org Media: BBC Things API + more... 18

19 Schema.org: Example of Data Web Example: Google reuses rating of IMDB to display in search results Rating in HTML of IMDB page re-appears in HTML of Google search result <div class="imdbrating" itemtype=" itemprop="aggregaterating"> <div class="ratingvalue"> <span itemprop="ratingvalue">8.0</span> </div> 19

20 Data Web Server Examples Open-source examples at Eclipse Lyo Simulink AMESim MagicDraw Open-source examples at Linked Data for Model-Based Systems Engineering (ld4mbse) Developed by Koneksys FMI PTC Integrity 20

21 Data Web Integration Example Navigable URL RDF Link to related data { "Req113": " }... "id": "112" "Req113" "Requirement", "id": "113"... HTTP Data Requirement id = 112 derived_from= Requirement 113 Reference to related data Requirement id =

22 Data Web Applications Private/ public Data Web Distributed Data Silos Search Visualize CRUD Analytics Link Creator RDF RDF RDF Link Link HTTP HTTP HTTP OSLC Adapter 1 OSLC Adapter 2 OSLC Adapter 3 Data Repository 1 Data Repository 2 Data Repository 3

23 Data Web Application Example Link Editor Private/public Data Web Distributed Data Silos RDF Link RDF Link Data Data Data Repository 1 Repository 2 Repository 3 23

24 Data Web Application Example Google-like Search Private/public Data Web Distributed Data Silos RDF Link RDF Link Data Data Data Repository 1 Repository 2 Repository 3 24

25 Data Web Application Example Tree (BOM-like) Viewers Private/public Data Web Distributed Data Silos RDF Link RDF Link Data Data Data Repository 1 Repository 2 Repository 3 25

26 Data Web Application Example Graph (Context-like) Viewers Private/public Data Web Distributed Data Silos RDF Link RDF Link Data Data Data Repository 1 Repository 2 Repository 3 26

27 New Data Management Application Architecture Traditional App Logic Specific API Data New App Logic HTTP Integrated Dataset Specific API Multiple Data Sources 27

28 Open Services for Lifecycle Collaboration (OSLC) 28

29 Open Services for Lifecycle Collaboration (OSLC) Standard for Linked Data RESTful APIs Domain-specific standards for data interoperability Adopted so far mainly for Application Lifecycle Management (ALM), systems and requirements engineering Open Community Linked Data (RDF) REST API (HTTP) Standardized Web API OSLC Adapter (Data Web Server) Different Data Formats XML, JSON, CSV, binary Different Data Models Relational, Graph, Document Data Different Data IDs integer, path, guid Different APIs Java, REST, query languages 29

30 OSLC Core Specification Mainly to support discovery (Hypermedia REST API) delegated dialogs for improved UI Response Information (such as for resource paging, or for errors) Selective Property Values Reuse of existing domain-specific specifications (e.g. Dublin Core) OSLC v2 spec: (not always accessible!) v3 in draft, awaiting implementations. 30

31 OSLC Community We are remaking the OSLC website! 31

32 Specifications for Web-based data interoperability 32

33 Data Web Interoperability Example Reading Data HTTP GET Data Web Server PLM System Writing Data Data Web Client " "Requirement", "id": "112",... RDF HTTP POST Data Web Server Web-based Export/Import Scenario between data stores ALM System 33

34 OSLC Domain-Specific Specifications 34

35 Data Web Interoperability Example Bidirectional model transformation between SysML and Simulink Developed by Koneksys Open-source implementation at ld4mbse 35

36 Converting Existing Schemas Into RDF 36

37 Traditional Schema Schema <xs:schema xmlns:xs=" <xs:element name="requirement"> <xs:complextype> <xs:sequence> <xs:element name="identifier" type="xs:string"/> <xs:element name="description" type="xs:string"/> </xs:sequence> </xs:complextype> </xs:element> </xs:schema> XML Document Schema describes the structure of an XML document The purpose of an XML Schema is to define the legal building blocks of an XML document: the elements and attributes that can appear in a document the number of (and order of) child elements data types for elements and attributes default and fixed values for elements and attributes <requirement> <identifier>123</identifier> <description>x shall Y</description> </requirement> 37

38 Converting Schema into RDF Schema <xs:schema xmlns:xs=" <xs:element name="requirement"> <xs:complextype> <xs:sequence> <xs:element name="identifier" type="xs:string"/> <xs:element name="description" type="xs:string"/> </xs:sequence> </xs:complextype> </xs:element> </xs:schema> RDF Schema? 38

39 Converting Schema types into RDF Schema element type RDF Resource Type <xs:schema xmlns:xs=" <rdfs:class <xs:element name="requirement"> <xs:complextype> <xs:sequence> <xs:element name="identifier" type="xs:string"/> <xs:element name="description" type="xs:string"/> </xs:sequence> </xs:complextype> </xs:element> </xs:schema> rdf:about=" /rm#requirement"> <rdfs:label xml:lang="en-gb">requirement</rdf s:label> </rdfs:class> 39

40 Converting Schema properties into RDF Schema element property (e.g. of type String) RDF Resource property <xs:schema xmlns:xs=" <xs:element name="requirement"> <xs:complextype> <xs:sequence> <rdf:description <xs:element name="identifier" type="xs:string"/> <xs:element name="description" type="xs:string"/> </xs:sequence> </xs:complextype> </xs:element> </xs:schema> rdf:about=" ntifier"> <rdfs:label xml:lang="en">identifier</rdfs:label> </rdf:description> 40

41 Converting Schema property multiplicities into RDF Schema element property multiplicity (e.g. identifier must occur once and only, default value in XSD for minoccurs and maxoccurs is 1 ) <xs:schema xmlns:xs=" <xs:element name="requirement"> <xs:complextype> <xs:sequence> <xs:element name="identifier" type="xs:string"/> <xs:element name="description" type="xs:string"/> </xs:sequence> </xs:complextype> </xs:element> </xs:schema> RDF Resource property <oslc:property> <oslc:propertydefinition rdf:resource=" identifier"/> <oslc:occurs rdf:resource=" ns/core#exactly-one"/> </oslc:property> 41

42 Converting existing schemas into RDF - Example SysML metamodel as RDF vocabulary More details at MGSysML/lib/exe/fetch.ph p?media=sysml-oslc:mappin g_sysml_to_rdf_vocabulary april_28_2014.pdf ocess/experimental-rdf/sys ML/1.3/ 42

43 Universal specs vs Web specs Universal Standards Web Standards Example SysML/STEP OSLC Specifications Scope Large (Example SysML: approx. 300 concepts) Minimalistic (Example OSLC RM Spec: 2 concepts) Effort until release High Small Time until release Long Short Ease of implementation Difficult Easy Ease of adoption Difficult Easy 43

44 Koneksys 44

45 Koneksys Creating solutions to connect data silos using the Web for improved traceability, transparency, collaboration, and analytics Providing consulting and research services Creating open-source software Promoting the Data Web 45

46 Koneksys Clients Located in San Francisco. In business since More at koneksys.com 46

47 Summary Data Web = Web-based data integration Distributed Based on open-standards Using standardized REST APIs (e.g. OSLC) Using RDF for limitless links between data having URLs as global identifiers Data Management Applications with Web as data source 47

48 Thanks and get in touch!

Overview of Open Services for Lifecycle Collaboration (OSLC)

Overview of Open Services for Lifecycle Collaboration (OSLC) Overview of Open Services for Lifecycle Collaboration (OSLC) INCOSE IW MBSE Workshop Axel Reichwein January 21, 2018 Koneksys Axel Reichwein Developer of multiple data integration solutions based on Open

More information

Achieving the digital thread through PLM and ALM integration using OSLC

Achieving the digital thread through PLM and ALM integration using OSLC Achieving the digital thread through PLM and ALM integration using OSLC Purdue PLM Meeting Spring 2018 Axel Reichwein March 29, 2018 Koneksys Axel Reichwein Developer of multiple data integration solutions

More information

Project Proposal: OSLC4MBSE - OMG SE and OSLC working group as part of the OMG SE DSIG. OSLC for Model-Based Systems Engineering Interoperability

Project Proposal: OSLC4MBSE - OMG SE and OSLC working group as part of the OMG SE DSIG. OSLC for Model-Based Systems Engineering Interoperability OSLC4MBSE OSLC for Model-Based Systems Engineering Interoperability This document presents the work of the OSLC4MBSE working group, which has been initiated as a collaborative effort between members of

More information

Successfully Integrating MBSE Data Without Replication Using OSLC

Successfully Integrating MBSE Data Without Replication Using OSLC Successfully Integrating MBSE Data Without Replication Using OSLC Brian Schouten schouten@prostep.com PROSTEP Inc GPDIS_2017.ppt 1 Agenda About PROSTEP MBSE Integration Needs and Challenges What is OSLC

More information

Service Requirements and Standard API Orlando Technical Meeting 06/24/16

Service Requirements and Standard API Orlando Technical Meeting 06/24/16 Service Requirements and Standard API Orlando Technical Meeting 06/24/16 Team Axel Reichwein (Lead) Koneksys Hedly Apperly PTC Josh Fiengold Tom Sawyer Software Charles Galey No Magic Inc AGENDA Open Services

More information

01 INTRODUCTION TO SEMANTIC WEB

01 INTRODUCTION TO SEMANTIC WEB SEMANTIC WEB 01 INTRODUCTION TO SEMANTIC WEB FROM WEB 1.0 TO WEB 3.0 IMRAN IHSAN ASSISTANT PROFESSOR, AIR UNIVERSITY, ISLAMABAD WWW.IMRANIHSAN.COM QUESTIONS What is the Semantic Web? Why do we want it?

More information

Introduction Syntax and Usage XML Databases Java Tutorial XML. November 5, 2008 XML

Introduction Syntax and Usage XML Databases Java Tutorial XML. November 5, 2008 XML Introduction Syntax and Usage Databases Java Tutorial November 5, 2008 Introduction Syntax and Usage Databases Java Tutorial Outline 1 Introduction 2 Syntax and Usage Syntax Well Formed and Valid Displaying

More information

Application integration with the W3C Linked Data standards Día W3C en España December 18 th, 2013

Application integration with the W3C Linked Data standards Día W3C en España December 18 th, 2013 Application integration with the W3C Linked Data standards Día W3C en España December 18 th, 2013 Nandana Mihindukulasooriya Universidad Politécnica de Madrid nmihindu@fi.upm.es 2 Evolution of Application

More information

Managing your Agile ALM Process with JasForge OSLC Forge and Lyo SDK DJAAFAR Karim

Managing your Agile ALM Process with JasForge OSLC Forge and Lyo SDK DJAAFAR Karim Managing your Agile ALM Process with JasForge OSLC Forge and Lyo SDK DJAAFAR Karim CO of Jasmine Conseil http://www.jasmineconseil.com Overview 35:00 Minutes Background and Intro Agile ALM at a glance

More information

Disruptive Changes of the Technical IT Infrastructure through Engineering 4.0

Disruptive Changes of the Technical IT Infrastructure through Engineering 4.0 Disruptive Changes of the Technical IT Infrastructure through Engineering 4.0 All rights reserved to Schaeffler AG, in particular in case of grant of an IP right. 17. 18.05.2017 Dr. Fabrice Mogo Nem, Schaeffler

More information

CLIENT-SIDE XML SCHEMA VALIDATION

CLIENT-SIDE XML SCHEMA VALIDATION Factonomy Ltd The University of Edinburgh Aleksejs Goremikins Henry S. Thompson CLIENT-SIDE XML SCHEMA VALIDATION Edinburgh 2011 Motivation Key gap in the integration of XML into the global Web infrastructure

More information

Web Services. The Pervasive Internet

Web Services. The Pervasive Internet Web Services CPSC 328 Spring 2009 The Pervasive Internet Years ago, computers couldn t talk to each other like they can now Researchers wanted to share information The Internet! Gopher & Veronica (text

More information

Web Computing. Revision Notes

Web Computing. Revision Notes Web Computing Revision Notes Exam Format The format of the exam is standard: Answer TWO OUT OF THREE questions Candidates should answer ONLY TWO questions The time allowed is TWO hours Notes: You will

More information

Eclipse Lyo: Re-thinking tool integrations

Eclipse Lyo: Re-thinking tool integrations Eclipse Lyo: Re-thinking tool integrations http://eclipse.org/lyo Michael Fiedler (@mffiedler, @oslcnews) Steve Speicher (@sspeiche) 1 2012 IBM Corporation, made available under the Eclipse Public License

More information

Oracle Utilities Opower Energy Efficiency Web Portal - Classic Single Sign-On

Oracle Utilities Opower Energy Efficiency Web Portal - Classic Single Sign-On Oracle Utilities Opower Energy Efficiency Web Portal - Classic Single Sign-On Configuration Guide E84772-01 Last Update: Monday, October 09, 2017 Oracle Utilities Opower Energy Efficiency Web Portal -

More information

SDP22: The IBM Jazz Foundation and the IBM

SDP22: The IBM Jazz Foundation and the IBM : The IBM Jazz Foundation and the IBM Jazz Integratio on Architecture Scottt Rich Distinguished Engineer, IBM Jazz Team srich@us.ibm.com 2009 IBM Corporation Agenda Brief overview of the Jazz 0..6 Architecture

More information

A c t i v e w o r k s p a c e f o r e x t e r n a l d a t a a g g r e g a t i o n a n d S e a r c h. 1

A c t i v e w o r k s p a c e f o r e x t e r n a l d a t a a g g r e g a t i o n a n d S e a r c h.   1 A c t i v e w o r k s p a c e f o r e x t e r n a l d a t a a g g r e g a t i o n a n d S e a r c h B a l a K a n t h i www.intelizign.com 1 Active workspace can search and visualize PLM data better! Problems:

More information

Syndeia 3.1 for MBSE. The Next Generation of Model-Based Systems Engineering Dr. Dirk Zwemer June 14, 2017

Syndeia 3.1 for MBSE. The Next Generation of Model-Based Systems Engineering Dr. Dirk Zwemer June 14, 2017 Syndeia 3.1 for MBSE The Next Generation of Model-Based Systems Engineering Dr. Dirk Zwemer June 14, 2017 Copyright Intercax 2017. All Rights Reserved. About Intercax Born: Georgia Tech spin-off 2008 Location:

More information

Data Governance for the Connected Enterprise

Data Governance for the Connected Enterprise Data Governance for the Connected Enterprise Irene Polikoff and Jack Spivak, TopQuadrant Inc. November 3, 2016 Copyright 2016 TopQuadrant Inc. Slide 1 Data Governance for the Connected Enterprise Today

More information

18.1 user guide No Magic, Inc. 2015

18.1 user guide No Magic, Inc. 2015 18.1 user guide No Magic, Inc. 2015 All material contained herein is considered proprietary information owned by No Magic, Inc. and is not to be shared, copied, or reproduced by any means. All information

More information

OSLC Consumer with Eclipse Lyo Project

OSLC Consumer with Eclipse Lyo Project OSLC Consumer with Eclipse Lyo Project Jean-Luc Johnson, AIRBUS Group Innovations Gray Bachelor, IBM Rational Samit Mehta, IBM Rational Harry Reeder, IBM Rational Your team today Jean-Luc Johnson (Airbus

More information

Towards semantic asset management and Core Vocabularies for e-government. Makx Dekkers Stijn Goedertier

Towards semantic asset management and Core Vocabularies for e-government. Makx Dekkers Stijn Goedertier Towards semantic asset management and Core Vocabularies for e-government Makx Dekkers makx@makxdekkers.com Stijn Goedertier stijn.goedertier@pwc.be DC-2011-22 September 2011 Five maturity levels for metadata

More information

Eclipse Lyo Overview. Michael Fiedler, Eclipse Lyo committer IBM Corporation

Eclipse Lyo Overview. Michael Fiedler, Eclipse Lyo committer IBM Corporation Eclipse Lyo Overview http://eclipse.org/lyo Michael Fiedler, Eclipse Lyo committer 1 Agenda Eclipse Lyo background Content and Plans Test Suites OSLC4J Samples Next Steps 2 OSLC Specifications OSLC Core

More information

TC57 Use of XML Schema. Scott Neumann. October 3, 2005

TC57 Use of XML Schema. Scott Neumann. October 3, 2005 TC57 Use of XML Schema Scott Neumann October 3, 2005 Introduction The purpose of this presentation is to respond to an action item from the last WG14 meeting regarding the use of XML Schema by WG14 and

More information

Product Range 3SL. Cradle -7

Product Range 3SL. Cradle -7 Cradle -7 From concept to creation... 3SL Product Range PRODUCT RANGE HIGHLIGHTS APPLIES TO AGILE AND PHASE PROJECTS APPLICATION LIFECYCLE MANAGEMENT REQUIREMENTS MANAGEMENT MODELLING / MBSE / SYSML /

More information

The Data Web and Linked Data.

The Data Web and Linked Data. Mustafa Jarrar Lecture Notes, Knowledge Engineering (SCOM7348) University of Birzeit 1 st Semester, 2011 Knowledge Engineering (SCOM7348) The Data Web and Linked Data. Dr. Mustafa Jarrar University of

More information

BEAWebLogic. Integration. Transforming Data Using XQuery Mapper

BEAWebLogic. Integration. Transforming Data Using XQuery Mapper BEAWebLogic Integration Transforming Data Using XQuery Mapper Version: 10.2 Document Revised: March 2008 Contents Introduction Overview of XQuery Mapper.............................................. 1-1

More information

Linked Data Evolving the Web into a Global Data Space

Linked Data Evolving the Web into a Global Data Space Linked Data Evolving the Web into a Global Data Space Anja Jentzsch, Freie Universität Berlin 05 October 2011 EuropeanaTech 2011, Vienna 1 Architecture of the classic Web Single global document space Web

More information

Infrastructure for Spatial Information in Europe. Proposed action for update of MIWP: Alternative encodings for INSPIRE data

Infrastructure for Spatial Information in Europe. Proposed action for update of MIWP: Alternative encodings for INSPIRE data INSPIRE Infrastructure for Spatial Information in Europe Proposed action for update of MIWP: Alternative encodings for INSPIRE data Type Creator MIWP Action fiche DG ENV Date/status/version 20/11/2017

More information

Ontologies aka: your metadata elements

Ontologies aka: your metadata elements Ontologies aka: your metadata elements vocabularies define the concepts and relationships (also referred to as terms ) used to describe and represent an area of concern (W3C) stated simply: ONTOLOGY is

More information

SWAD-Europe Deliverable 6.3a Description of prototype implementation (documentation for deliverable 6.2)

SWAD-Europe Deliverable 6.3a Description of prototype implementation (documentation for deliverable 6.2) Mon Jun 07 2004 17:07:23 Europe/Madrid SWAD-Europe Deliverable 6.3a Description of prototype implementation (documentation for deliverable 6.2) Building knowledge objects from disparate, related resources

More information

Spatial Data on the Web

Spatial Data on the Web Spatial Data on the Web Tools and guidance for data providers The European Commission s science and knowledge service W3C Data on the Web Best Practices 35 W3C/OGC Spatial Data on the Web Best Practices

More information

Java EE 7: Back-end Server Application Development 4-2

Java EE 7: Back-end Server Application Development 4-2 Java EE 7: Back-end Server Application Development 4-2 XML describes data objects called XML documents that: Are composed of markup language for structuring the document data Support custom tags for data

More information

COMP6217 Social Networking Technologies Web evolution and the Social Semantic Web. Dr Thanassis Tiropanis

COMP6217 Social Networking Technologies Web evolution and the Social Semantic Web. Dr Thanassis Tiropanis COMP6217 Social Networking Technologies Web evolution and the Social Semantic Web Dr Thanassis Tiropanis t.tiropanis@southampton.ac.uk The narrative Semantic Web Technologies The Web of data and the semantic

More information

ISO/IEC INTERNATIONAL STANDARD

ISO/IEC INTERNATIONAL STANDARD INTERNATIONAL STANDARD This is a preview - click here to buy the full publication ISO/IEC 19500-3 First edition 2012-04-15 Information technology Object Management Group Common Object Request Broker Architecture

More information

Linked Data: Fast, low cost semantic interoperability for health care?

Linked Data: Fast, low cost semantic interoperability for health care? Linked Data: Fast, low cost semantic interoperability for health care? About the presentation Part I: Motivation Why we need semantic operability in health care Why enhancing existing systems to increase

More information

Metatomix Semantic Platform

Metatomix Semantic Platform Metatomix Semantic Platform About Metatomix Founded in 2000 Privately held Headquarters - Dedham, MA Offices in Atlanta, Memphis, San Francisco, and London Semantic Technology Leadership Numerous patents,

More information

The Future of MBSE with MagicDraw Jason Wilson Director, Solution Architecture & Business Development

The Future of MBSE with MagicDraw Jason Wilson Director, Solution Architecture & Business Development The Future of MBSE with MagicDraw Jason Wilson Director, Solution Architecture & Business Development Jason Wilson Background Director, Business Development & Solution Architecture 5+ years @ No Magic

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

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

JVA-563. Developing RESTful Services in Java

JVA-563. Developing RESTful Services in Java JVA-563. Developing RESTful Services in Java Version 2.0.1 This course shows experienced Java programmers how to build RESTful web services using the Java API for RESTful Web Services, or JAX-RS. We develop

More information

[MS-EDCSOM]: Intellectual Property Rights Notice for Open Specifications Documentation

[MS-EDCSOM]: Intellectual Property Rights Notice for Open Specifications Documentation [MS-EDCSOM]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation for protocols, file formats, languages,

More information

JENA: A Java API for Ontology Management

JENA: A Java API for Ontology Management JENA: A Java API for Ontology Management Hari Rajagopal IBM Corporation Page Agenda Background Intro to JENA Case study Tools and methods Questions Page The State of the Web Today The web is more Syntactic

More information

Big Data 9. Data Models

Big Data 9. Data Models Ghislain Fourny Big Data 9. Data Models pinkyone / 123RF Stock Photo 1 Syntax vs. Data Models Physical view Syntax this is text. 2 Syntax vs. Data Models a Logical view

More information

Semantic Technology. Chris Welty IBM Research

Semantic Technology. Chris Welty IBM Research Semantic Technology Chris Welty IBM Research What are semantic technologies Dates back to the 60s, 70s, 80s, 90s STRIPS, SNePS,, CG, KL-ONE, NIKL, CLASSIC, LOOM, RACER, etc Today we have standards Common

More information

University of Bath. Publication date: Document Version Publisher's PDF, also known as Version of record. Link to publication

University of Bath. Publication date: Document Version Publisher's PDF, also known as Version of record. Link to publication Citation for published version: Patel, M & Duke, M 2004, 'Knowledge Discovery in an Agents Environment' Paper presented at European Semantic Web Symposium 2004, Heraklion, Crete, UK United Kingdom, 9/05/04-11/05/04,.

More information

Library of Congress BIBFRAME Pilot. NOTSL Fall Meeting October 30, 2015

Library of Congress BIBFRAME Pilot. NOTSL Fall Meeting October 30, 2015 Library of Congress BIBFRAME Pilot NOTSL Fall Meeting October 30, 2015 THE BIBFRAME EDITOR AND THE LC PILOT The Semantic Web and Linked Data : a Recap of the Key Concepts Learning Objectives Describe the

More information

XML and Web Services

XML and Web Services XML and Web Services Lecture 8 1 XML (Section 17) Outline XML syntax, semistructured data Document Type Definitions (DTDs) XML Schema Introduction to XML based Web Services 2 Additional Readings on XML

More information

3rd Lecture Languages for information modeling

3rd Lecture Languages for information modeling 3rd Lecture Languages for information modeling Agenda Languages for information modeling UML UML basic concepts Modeling by UML diagrams CASE tools: concepts, features and objectives CASE toolset architecture

More information

White Paper. Fabasoft Integration for Novell GroupWise. Fabasoft Folio 2017 R1 Update Rollup 1

White Paper. Fabasoft Integration for Novell GroupWise. Fabasoft Folio 2017 R1 Update Rollup 1 White Paper Fabasoft Integration for Novell GroupWise Fabasoft Folio 2017 R1 Update Rollup 1 Copyright Fabasoft R&D GmbH, Linz, Austria, 2018. All rights reserved. All hardware and software names used

More information

A Linked Data Translation Approach to Semantic Interoperability

A Linked Data Translation Approach to Semantic Interoperability A Data Translation Approach to Semantic Interoperability November 12, 2014 Dataversity Webinar Rafael M Richards MD MS Physician Informaticist Veterans Health Administratioan U.S. Department of Veterans

More information

ODPi and Data Governance Free Your MetaData! October 10, 2018

ODPi and Data Governance Free Your MetaData! October 10, 2018 ODPi and Data Governance Free Your MetaData! October 10, 2018 Today s reality @ODPiOrg Imagine An enterprise data catalogue that lists all of your data, where it is located, its origin (lineage), owner,

More information

Defragmenting the IoT with the Web of Things

Defragmenting the IoT with the Web of Things Defragmenting the IoT with the Web of Things Enabling Open Markets of Services Dave Raggett, W3C Activity lead for Web of Data FIWARE Summit, Porto 8 May 2018 Defragmenting the Internet of Things The Internet

More information

The Logical Data Store

The Logical Data Store Tenth ECMWF Workshop on Meteorological Operational Systems 14-18 November 2005, Reading The Logical Data Store Bruce Wright, John Ward & Malcolm Field Crown copyright 2005 Page 1 Contents The presentation

More information

11. Documents and Document Models

11. Documents and Document Models 1 of 14 10/3/2005 2:47 PM 11. Documents and Document Models IS 202-4 October 2005 Copyright  2005 Robert J. Glushko Plan for IO & IR Lecture #11 What is a document? Document types The Document Type Spectrum

More information

Open Development Eclipse: Help Yourself!

Open Development Eclipse: Help Yourself! Open Development Data @ Eclipse: Help Yourself! Boris Baldassari boris.baldassari@castalia.solutions http://castalia.solutions Check the full article! Open Development Data @ Eclipse: Help Yourself! Boris

More information

Semantic Web Technologies and Automated Auctions

Semantic Web Technologies and Automated Auctions Semantic Web Technologies and Automated Auctions Papers: "Implementing Semantic Interoperability in Electronic Auctions" - Juha Puustjarvi (2007) "Ontologies for supporting negotiation in e-commerce" -

More information

QosPolicyHolder:1 Erratum

QosPolicyHolder:1 Erratum Erratum Number: Document and Version: Cross References: Next sequential erratum number Effective Date: July 14, 2006 Document erratum applies to the service document QosPolicyHolder:1 This Erratum has

More information

User Manual. Privacy Infringement Severity. ProM Plug-in. Author: Sebastian Banescu Version: 0.1

User Manual. Privacy Infringement Severity. ProM Plug-in. Author: Sebastian Banescu Version: 0.1 User Manual Privacy Infringement Severity ProM Plug-in Author: Sebastian Banescu Version: 0.1 1 Table of Contents 1. Introduction...3 1.1 Implementation Details...3 2. Installation...3 3. Plug-in inputs...4

More information

Future Directions for SysML v2 INCOSE IW MBSE Workshop January 28, 2017

Future Directions for SysML v2 INCOSE IW MBSE Workshop January 28, 2017 Future Directions for SysML v2 INCOSE IW MBSE Workshop January 28, 2017 Sanford Friedenthal safriedenthal@gmail.com 1/30/2017 Agenda Background System Modeling Environment (SME) SysML v2 Requirements Approach

More information

A common metadata approach to support egovernment interoperability

A common metadata approach to support egovernment interoperability ISWC 2011 10 th International Semantic Web Conference October, 2011 Rue Froissart 36, Brussels - 1040, Belgium A common metadata approach to support egovernment interoperability Makx Dekkers makx@makxdekkers.com

More information

Outline. The Collaborative Research Platform for Data Curation and Repositories: CKAN For ANGIS Data Portal. Open Access & Open Data.

Outline. The Collaborative Research Platform for Data Curation and Repositories: CKAN For ANGIS Data Portal. Open Access & Open Data. Outline The Collaborative Research Platform for Data Curation and Repositories: CKAN For ANGIS Data Portal Open Access & Open Data ANGIS data portal New developed features Future works Hsiung-Ming Liao,

More information

[MS-TPXS-Diff]: Telemetry Protocol XML Schema. Intellectual Property Rights Notice for Open Specifications Documentation

[MS-TPXS-Diff]: Telemetry Protocol XML Schema. Intellectual Property Rights Notice for Open Specifications Documentation [MS-TPXS-Diff]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation ( this documentation ) for protocols,

More information

Driver Manual. FS HTTP XML Driver

Driver Manual. FS HTTP XML Driver A Sierra Monitor Company Driver Manual (Supplement to the FieldServer Instruction Manual) FS-8704-15 HTTP XML Driver APPLICABILITY & EFFECTIVITY Effective for all systems manufactured after August 2012

More information

XML / HTTP(s) NETIO M2M API protocols docs

XML / HTTP(s) NETIO M2M API protocols docs XML / HTTP(s) NETIO M2M API protocols docs Protocol version: XML Version 2.0 Short summary XML / HTTP(s) protocol is a file-based M2M API protocol, where the NETIO device is a HTTP(s) server and the client

More information

Level of Assurance Authentication Context Profiles for SAML 2.0

Level of Assurance Authentication Context Profiles for SAML 2.0 2 3 4 5 Level of Assurance Authentication Context Profiles for SAML 2.0 Draft 01 01 April 2008 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 Specification URIs: This

More information

raceability Support in OpenModelica Using Open Services for Lifecycle Collaboration (OSLC)

raceability Support in OpenModelica Using Open Services for Lifecycle Collaboration (OSLC) raceability Support in OpenModelica Using Open Services for Lifecycle Collaboration (OSLC) Alachew Mengist, Adrian Pop, Adeel Asghar, Peter Fritzson MODPROD 2017, Linköping 2017-02-02 1 Agenda Problem

More information

Custom Data Access with MapObjects Java Edition

Custom Data Access with MapObjects Java Edition Custom Data Access with MapObjects Java Edition Next Generation Command and Control System (NGCCS) Tactical Operations Center (TOC) 3-D Concurrent Technologies Corporation Derek Sedlmyer James Taylor 05/24/2005

More information

Welcome to INFO216: Advanced Modelling

Welcome to INFO216: Advanced Modelling Welcome to INFO216: Advanced Modelling Theme, spring 2017: Modelling and Programming the Web of Data Andreas L. Opdahl About me Background: siv.ing (1988), dr.ing (1992) from NTH/NTNU

More information

ONVIF. XML Schema Version and Extension Handling White Paper

ONVIF. XML Schema Version and Extension Handling White Paper ONVIF 1 XML Schema Extension Handling ONVIF XML Schema Version and Extension Handling White Paper Version 1.2 December, 2015 1 Background 1.1 Purpose Version and extensions handling for XML schemas are

More information

CA ERwin Data Modeler r7.3

CA ERwin Data Modeler r7.3 PRODUCT BRIEF: CA ERWIN DATA MODELER R7.3 CA ERwin Data Modeler r7.3 CA ERWIN DATA MODELER (CA ERWIN DM) IS AN INDUSTRY-LEADING DATA MODELING SOLUTION THAT ENABLES YOU TO CREATE AND MAINTAIN DATABASES,

More information

Introduction. October 5, Petr Křemen Introduction October 5, / 31

Introduction. October 5, Petr Křemen Introduction October 5, / 31 Introduction Petr Křemen petr.kremen@fel.cvut.cz October 5, 2017 Petr Křemen (petr.kremen@fel.cvut.cz) Introduction October 5, 2017 1 / 31 Outline 1 About Knowledge Management 2 Overview of Ontologies

More information

From: Sudarshan N Raghavan (770)

From: Sudarshan N Raghavan (770) Spectrum Software, Inc. 11445 Johns Creek Pkwy. Suite 300 Duluth, GA 30097 www.spectrumscm.com Subject: SpectrumSCM Plugin for the Eclipse Platform Original Issue Date: February 2 nd, 2005 Latest Update

More information

Web Applications. Web Services problems solved. Web services problems solved. Web services - definition. W3C web services standard

Web Applications. Web Services problems solved. Web services problems solved. Web services - definition. W3C web services standard Web Applications 31242/32549 Advanced Internet Programming Advanced Java Programming Presentation-oriented: PAGE based App generates Markup pages (HTML, XHTML etc) Human oriented : user interacts with

More information

[MS-TMPLDISC]: Template Discovery Web Service Protocol. Intellectual Property Rights Notice for Open Specifications Documentation

[MS-TMPLDISC]: Template Discovery Web Service Protocol. Intellectual Property Rights Notice for Open Specifications Documentation [MS-TMPLDISC]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation for protocols, file formats, languages,

More information

Migrating traditional Java EE applications to mobile

Migrating traditional Java EE applications to mobile Migrating traditional Java EE applications to mobile Serge Pagop Sr. Channel MW Solution Architect, Red Hat spagop@redhat.com Burr Sutter Product Management Director, Red Hat bsutter@redhat.com 2014-04-16

More information

2006 Martin v. Löwis. Data-centric XML. XML Schema (Part 1)

2006 Martin v. Löwis. Data-centric XML. XML Schema (Part 1) Data-centric XML XML Schema (Part 1) Schema and DTD Disadvantages of DTD: separate, non-xml syntax very limited constraints on data types (just ID, IDREF, ) no support for sets (i.e. each element type

More information

Semantic Web Lecture Part 1. Prof. Do van Thanh

Semantic Web Lecture Part 1. Prof. Do van Thanh Semantic Web Lecture Part 1 Prof. Do van Thanh Overview of the lecture Part 1 Why Semantic Web? Part 2 Semantic Web components: XML - XML Schema Part 3 - Semantic Web components: RDF RDF Schema Part 4

More information

RESTful CIM using the Open Data Protocol

RESTful CIM using the Open Data Protocol RESTful CIM using the Open Data Protocol Alan McMorran B.Eng Ph.D!1 CIM Exchanges!2 CIM Data Exchange The exchange of data using CIM has traditionally been used in two primary ways: Full Model exchange

More information

Specification of contineo s REST Interface

Specification of contineo s REST Interface Specification of contineo s REST Interface Sebastian Stein seb.stein@hpfsc.de 2007-02-07, contineo version 2.5 1 Contents 1 Introduction 3 2 General Concept 3 2.1 REST Web Service Interface..................

More information

WWW2004: Semantic Web Implementation at Adobe. Chuck Myers Adobe Systems Incorporated May 20, 2004

WWW2004: Semantic Web Implementation at Adobe. Chuck Myers Adobe Systems Incorporated May 20, 2004 WWW2004: Semantic Web Implementation at Adobe bc Chuck Myers Adobe Systems Incorporated May 20, 2004 What is XMP? Technical description Adobe s Extensible Metadata Platform (XMP) is a labeling technology

More information

Opus: University of Bath Online Publication Store

Opus: University of Bath Online Publication Store Patel, M. (2002) Metadata vocabularies and ontologies. In: Ontologies & Communications Working Group Meeting, Agentcities Information Day 2, 2002-09-09-2002-09-10, Lisbon. Link to official URL (if available):

More information

Semantic Integration with Apache Jena and Apache Stanbol

Semantic Integration with Apache Jena and Apache Stanbol Semantic Integration with Apache Jena and Apache Stanbol All Things Open Raleigh, NC Oct. 22, 2014 Overview Theory (~10 mins) Application Examples (~10 mins) Technical Details (~25 mins) What do we mean

More information

Customer Market Results Interface (CMRI) For RC Interface Specification. Version: 1.0.0

Customer Market Results Interface (CMRI) For RC Interface Specification. Version: 1.0.0 Customer Market Results Interface (CMRI) For RC Interface Specification Version: 1.0.0 November 1, 2018 Revision History Date Version Description 11/01/2018 1.0.0 Initial document release Page 2 of 10

More information

Web Information System Design. Tatsuya Hagino

Web Information System Design. Tatsuya Hagino Web Information System Design Tatsuya Hagino (hagino@sfc.keio.ac.jp) 1 Course Summary Understanding the current Web architecture Web components Web as document space Structure of Web documents Web principles

More information

OSLC Case Study (POC RESULTS) Brian Schouten PROSTEP Inc.

OSLC Case Study (POC RESULTS) Brian Schouten PROSTEP Inc. OSLC Case Study (POC RESULTS) Brian Schouten PROSTEP Inc. OSLC Case Study (POC Results) OSLC Background Linked Data OSCL Features Case Study Bombardier Transport POC Description Automotive OEM POC Results

More information

Linked open data at Insee. Franck Cotton Guillaume Mordant

Linked open data at Insee. Franck Cotton Guillaume Mordant Linked open data at Insee Franck Cotton franck.cotton@insee.fr Guillaume Mordant guillaume.mordant@insee.fr Linked open data at Insee Agenda A long story How is data published? Why publish Linked Open

More information

Teamcenter 11.1 Systems Engineering and Requirements Management

Teamcenter 11.1 Systems Engineering and Requirements Management SIEMENS Teamcenter 11.1 Systems Engineering and Requirements Management Systems Architect/ Requirements Management Project Administrator's Manual REQ00002 U REQ00002 U Project Administrator's Manual 3

More information

Big Data for Engineers Spring Data Models

Big Data for Engineers Spring Data Models Ghislain Fourny Big Data for Engineers Spring 2018 11. Data Models pinkyone / 123RF Stock Photo CSV (Comma separated values) This is syntax ID,Last name,first name,theory, 1,Einstein,Albert,"General, Special

More information

[MS-ASNOTE]: Exchange ActiveSync: Notes Class Protocol. Intellectual Property Rights Notice for Open Specifications Documentation

[MS-ASNOTE]: Exchange ActiveSync: Notes Class Protocol. Intellectual Property Rights Notice for Open Specifications Documentation [MS-ASNOTE]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation ( this documentation ) for protocols,

More information

PROCE55 Mobile: Web API App. Web API. https://www.rijksmuseum.nl/api/...

PROCE55 Mobile: Web API App. Web API. https://www.rijksmuseum.nl/api/... PROCE55 Mobile: Web API App PROCE55 Mobile with Test Web API App Web API App Example This example shows how to access a typical Web API using your mobile phone via Internet. The returned data is in JSON

More information

A framework for the implementation of Application Profiles in XML Schemas

A framework for the implementation of Application Profiles in XML Schemas A framework for the implementation of Application Profiles in XML Schemas Nicholaos Mourkoussis, Manjula Patel*, Martin White N.Mourkoussis@sussex.ac.uk, M.Patel@ukoln.ac.uk, M.White@sussex.ac.uk Centre

More information

METADATA INTERCHANGE IN SERVICE BASED ARCHITECTURE

METADATA INTERCHANGE IN SERVICE BASED ARCHITECTURE UDC:681.324 Review paper METADATA INTERCHANGE IN SERVICE BASED ARCHITECTURE Alma Butkovi Tomac Nagravision Kudelski group, Cheseaux / Lausanne alma.butkovictomac@nagra.com Dražen Tomac Cambridge Technology

More information

IoT Standards Ecosystem, What s new?

IoT Standards Ecosystem, What s new? IoT Standards Ecosystem, What s new? Dave Raggett , W3C IoT Week 2017, Geneva It all began here at CERN Tim Berners-Lee s 1989/1990 proposal for the Web, and the first Web browser Explosive

More information

Jazz for Service Management Version 1.1. Offering Guide

Jazz for Service Management Version 1.1. Offering Guide Jazz for Service Management Version 1.1 Offering Guide Jazz for Service Management Version 1.1 Offering Guide Note Before using this information and the offering it supports, read the information in Notices

More information

Metadata and the Rise of Big Data Governance: Active Open Source Initiatives. October 23, 2018

Metadata and the Rise of Big Data Governance: Active Open Source Initiatives. October 23, 2018 Metadata and the Rise of Big Data Governance: Active Open Source Initiatives October 23, 2018 Today s speakers John Mertic, Director of Program Management, Linux Foundation David Radley, ODPi Egeria maintainer,

More information

Lessons learned from building Eclipse-based add-ons for commercial modeling tools

Lessons learned from building Eclipse-based add-ons for commercial modeling tools Lessons learned from building Eclipse-based add-ons for commercial modeling tools (from a technology perspective) István Ráth Ákos Horváth EclipseCon France June 14 2018 MagicDraw A popular modeling tool

More information

Lab 2: Adding a Rhapsody Model to RMM

Lab 2: Adding a Rhapsody Model to RMM Lab 2: Adding a Rhapsody Model to RMM Objectives After completing this lab, you will be able to: Create an RTC repository workspace and local sandbox Add a Rhapsody model to RMM Link a work item to a change

More information

DR10.5: Handbook for usage of the PDKM prototype version 2

DR10.5: Handbook for usage of the PDKM prototype version 2 DR10.5: Handbook for usage of the PDKM prototype version 2 Written by: Andreas Edler, Andreas Krienke, Michael Marquard, InMediasP DELIVERABLE NO DR10.5: Handbook for usage of the PDKM prototype version

More information

Semantic Web Fundamentals

Semantic Web Fundamentals Semantic Web Fundamentals Web Technologies (706.704) 3SSt VU WS 2018/19 with acknowledgements to P. Höfler, V. Pammer, W. Kienreich ISDS, TU Graz January 7 th 2019 Overview What is Semantic Web? Technology

More information