The A2A Data Model and its application in WieWasWie. Michel

Size: px
Start display at page:

Download "The A2A Data Model and its application in WieWasWie. Michel Brinckman [email protected] @michelbrinckman"

Transcription

1 The A2A Data Model and its application in WieWasWie Michel

2 Overview Archive documents vs genealogy Need for abstraction A2A Entities Into the XML syntax How about semantics? The future of A2A Questions/discussion

3 Archive documents vs genealogy

4 Need for abstraction WieWasWie was to be a central search platform for 25+ organizations Not only 11 different sourcetypes, but also different versions of the same sourcetype Uniform template enforcement But also extensibility

5 A2A Entities (1/2)

6 A2A Entities (2/2) IsXML? IsA2A? IsSourceType?

7 Into the XML syntax (1/5) <!--The type of the main element--> <xsd:complextype name="a2atype"> <xsd:sequence> <xsd:element name="person" type="a2a:ctperson" minoccurs="0" maxoccurs="unbounded"></xsd:element> <xsd:element name="event" type="a2a:ctevent" minoccurs="0" maxoccurs="unbounded"></xsd:element> <xsd:element name="object" type="a2a:ctobject" minoccurs="0" maxoccurs="unbounded"></xsd:element> <xsd:element name="relationep" type="a2a:ctrelationep" minoccurs="0" maxoccurs="unbounded"></xsd:element> <xsd:element name="relationpp" type="a2a:ctrelationpp" minoccurs="0" maxoccurs="unbounded"></xsd:element> <xsd:element name="relationpo" type="a2a:ctrelationpo" minoccurs="0" maxoccurs="unbounded"></xsd:element> <xsd:element name="relationeo" type="a2a:ctrelationeo" minoccurs="0" maxoccurs="unbounded"></xsd:element> <xsd:element name="relationp" type="a2a:ctrelationp" minoccurs="0" maxoccurs="unbounded"></xsd:element> <xsd:element name="relationoo" type="a2a:ctrelationoo" minoccurs="0" maxoccurs="unbounded"></xsd:element> <xsd:element name="relationo" type="a2a:ctrelationo" minoccurs="0" maxoccurs="unbounded"></xsd:element> <xsd:element name="source" type="a2a:ctsource" minoccurs="1" maxoccurs="1"></xsd:element> </xsd:sequence> <xsd:attribute name="version" type="a2a:stversion" use="required"></xsd:attribute> </xsd:complextype> <?xml version="1.0"?> <A2A Version="1.7> <Person pid="person1">(...)</person> <Event eid="event1">(...)</event> <RelationEP> <PersonKeyRef>Person1</PersonKeyRef> <EventKeyRef>Event1</EventKeyRef> <RelationType>Kind</RelationType> </RelationEP> <Source>(...)</Source> </A2A> <xsd:complextype name ="ctrelationep"> <xsd:sequence> <xsd:element name ="PersonKeyRef" type="a2a:token100" minoccurs="1" maxoccurs="1"></xsd:element> <xsd:element name ="EventKeyRef" type="a2a:token100" minoccurs="1" maxoccurs="1"></xsd:element> <xsd:element name ="RelationType" type="a2a:strelationep" minoccurs="1" maxoccurs="1"></xsd:element> <xsd:element name ="ExtendedRelationType" type="a2a:cttransstring" minoccurs="0" maxoccurs="1"></xsd:element> </xsd:sequence> </xsd:complextype> <xsd:simpletype name="strelationep"> <xsd:restriction base="a2a:token100"> <xsd:pattern value="kind Dopeling (...) Partner other:.*"></xsd:pattern> </xsd:restriction> </xsd:simpletype>

8 Into the XML syntax (2/5) <xsd:complextype name="ctsource"> <xsd:sequence> <xsd:element name="sourceplace" type="a2a:ctplace" minoccurs="1" maxoccurs="1"></xsd:element> <xsd:element name="sourceindexdate" type="a2a:ctindexdate" minoccurs="1" maxoccurs="1"></xsd:element> <xsd:element name="sourcedate" type="a2a:cttransdate" minoccurs="0" maxoccurs="1"></xsd:element> <xsd:element name="sourcetype" type="a2a:stsourcetype" minoccurs="0" maxoccurs="1"></xsd:element> <xsd:element name="ead" type="a2a:ctead" minoccurs="0" maxoccurs="1"></xsd:element> <xsd:element name="eac" type="a2a:cteac" minoccurs="0" maxoccurs="1"></xsd:element> <xsd:element name="sourcereference" type="a2a:ctsourcereference" minoccurs="0" maxoccurs="1"></xsd:element> <xsd:element name="sourceavailablescans" type="a2a:ctscans" minoccurs="0" maxoccurs="1"></xsd:element> <xsd:element name="sourcedigitalizationdate" type="xsd:date" minoccurs="0" maxoccurs="1"></xsd:element> <xsd:element name="sourcelastchangedate" type="xsd:date" minoccurs="0" maxoccurs="1"></xsd:element> <xsd:element name="sourcedigitaloriginal" type="xsd:anyuri" minoccurs="0" maxoccurs="1"></xsd:element> <xsd:element name="recordidentifier" type="a2a:token100" minoccurs="0" maxoccurs="1"></xsd:element> <xsd:element name="recordguid" type="a2a:stguid" minoccurs="1" maxoccurs="1"></xsd:element> <xsd:element name="sourceremark" type="a2a:ctremarkpair" minoccurs="0" maxoccurs="unbounded"></xsd:element> </xsd:sequence> </xsd:complextype> <xsd:complextype name="ctindexdate"> <xsd:sequence> <xsd:element name="from" type="xsd:date" minoccurs="1" maxoccurs="1"></xsd:element> <xsd:element name="to" type="xsd:date" minoccurs="1" maxoccurs="1"></xsd:element> </xsd:sequence> </xsd:complextype> <Source> <SourcePlace> <Country>Netherlands</Country> <Place>Rotterdam</Place> </SourcePlace> <SourceIndexDate> <From> </From> <To> </To> </SourceIndexDate> (...) </Source> <xsd:simpletype name="stsourcetype"> <xsd:restriction base="a2a:token100"> <xsd:pattern value="dtb Dopen DTB Trouwen DTB Begraven BS Geboorte BS Huwelijk BS Overlijden Bevolkingsregister Notariële archieven VOC Opvarenden Kadaster Memories van Successie other:.*"> </xsd:pattern> </xsd:restriction> </xsd:simpletype>

9 Into the XML syntax (3/5) <xsd:complextype name="ctremarkpair"> <xsd:sequence> <xsd:element name ="Value" type="a2a:cttranslongstring" minoccurs="1" maxoccurs="1"> </xsd:element> </xsd:sequence> <xsd:attribute name="key" type="a2a:token100" use="required"></xsd:attribute> </xsd:complextype> <Source> (...) <SourceRemark Key="Bestemming"> <Value>Batavia</Value> </SourceRemark> <SourceRemark Key="Opmerking"> <Value>Schip is onderweg gezonken</value> </SourceRemark> </Source> <Object oid="schip1"> <Description>Spiering</Description> </Object> <RelationPO> <PersonKeyRef>Person1</PersonKeyRef> <ObjectKeyRef>Schip1</ObjectKeyRef> <RelationType>other:Opvarende</RelationType> </RelationPO> <RelationEO> <EventKeyRef>Event1</EventKeyRef> <ObjectKeyRef>Schip1</ObjectKeyRef> <RelationType>other:VertrekKamer</RelationType> </RelationEO> <Source> <SourceRemark Key="Rubriek;Trefwoord"> <Value>rampen;Brand</Value> </SourceRemark> <SourceRemark Key="Rubriek;Trefwoord"> <Value>cultuur;behangsel</Value> </SourceRemark> <SourceRemark Key="Rubriek;Trefwoord"> <Value>verkeer;paard</Value> </SourceRemark> </Source>

10 Into the XML syntax (4/5) <Person pid="person1"> <PersonName> <PersonNameFirstName TranscriptionRemark="stain prohibits clear reading, could also be Gretje">Grietje</PersonNameFirstName> <PersonNamePatronym>Jacobsdr</PersonNamePatronym> <PersonNamePrefixLastName>van</PersonNamePrefixLastName> <PersonNameLastName>Grootebroek</PersonNameLastName> </PersonName> <Age> <PersonAgeLiteral>20</PersonAgeLiteral> </Age> <Profession language="nl-be">naaister</profession> <Profession>koopvrouw</Profession> </Person>

11 Into the XML syntax (5/5) <xsd:element name="a2acollection"> <xsd:complextype> <xsd:sequence> <xsd:element ref="a2a:a2a" minoccurs="0" maxoccurs="unbounded" /> </xsd:sequence> </xsd:complextype> </xsd:element> <A2ACollection> <A2A Version="1.7" > <Person pid="kind">(...)</person> <Event eid="geboorte">(...)</event> <Source> (...) <RecordGUID>{05477CC AE F}</RecordGUID> </Source> </A2A> <A2A Version="1.7" > <Person pid= vader">(...)</person> <Event eid="geboorte">(...)</event> <Source> (...) <RecordGUID>{EC89E C03-8CA8-83C7B215A65D}</RecordGUID> </Source> </A2A> </A2ACollection>

12 How about semantics? (1/2) Schematron definitions (.xml =>.xslt) <pattern name="person: geen apart Familyname veld"> <rule context="a2a:personname"> <report test="a2a:personnamefamilyname">gebruik van Familyname is niet toegestaan</report> </rule> </pattern> <pattern name="verplichte Bron gegevens"> <rule context="a2a:source"> <assert test="a2a:sourcetype and normalize-space(a2a:sourcetype)">er is geen bronsoort opgegeven</assert> </rule> </pattern> <pattern name="bronsoort"> <rule context="a2a:sourcetype"> <assert test=".='dtb Begraven'">Er mag geen andere Bronsoort zijn dan DTB Begraven</assert> </rule> </pattern>

13 How about semantics? (2/2) Form definitions xml based building blocks <Form xmlns:xsd=" xmlns:xsi=" SourceType="BS Overlijden" MinPersons="1" MinEvents="1" MinObjects="0" RequiredFields="Place,InstitutionName" HiddenFields="" ShowEAC="false" ShowEAD="false" Remarks="Opmerking,AkteSoort"> <Persons> <Person ShowOptionalFields="WhenFilled" ShowDetails="WhenFilled" Reference="Overledene" Remarks="" Min="0" Max="1" RequiredFields="Gender" HiddenFields="FamilyName" RequiredOptionalFields="FirstName,Patronym,PrefixLastName,LastName" HasProfessions="true" ShowPersonNameDetails="WhenFilled" ShowPersonAgeDetails="WhenFilled"> <Required>false</Required> <Residence ShowDetails="WhenFilled" /> <Origin ShowDetails="WhenFilled" /> <BirthPlace ShowDetails="WhenFilled" /> <BirthDate ShowDetails="WhenFilled" /> </Person> <Person ShowOptionalFields="WhenFilled" ShowDetails="WhenFilled" Reference="Vader" Remarks="" Min="0" Max="1" RequiredFields="" HiddenFields="FamilyName" RequiredOptionalFields="" HasProfessions="true" ShowPersonNameDetails="WhenFilled" ShowPersonAgeDetails="WhenFilled"> <Required>false</Required> <Residence ShowDetails="WhenFilled" /> <Origin ShowDetails="WhenFilled" /> <BirthPlace ShowDetails="WhenFilled" /> <BirthDate ShowDetails="WhenFilled" /> </Person> </Persons> (...)

14 The future of A2A Maintenance A2A by CBG More SourceTypes, more EventTypes, more RelationPP and RelationEP types Changing max-lengths of some elements Removing or restructuring some oddities Better standard for Semantics (enforcing specific SourceType structure) Storing family trees?

15 Questions/discussion

Allegato XML flusso richieste di produzione

Allegato XML flusso richieste di produzione Allegato XML flusso richieste di produzione -

More information

04 XML Schemas. Software Technology 2. MSc in Communication Sciences 2009-10 Program in Technologies for Human Communication Davide Eynard

04 XML Schemas. Software Technology 2. MSc in Communication Sciences 2009-10 Program in Technologies for Human Communication Davide Eynard MSc in Communication Sciences 2009-10 Program in Technologies for Human Communication Davide Eynard Software Technology 2 04 XML Schemas 2 XML: recap and evaluation During last lesson we saw the basics

More information

Introduction to XML. Data Integration. Structure in Data Representation. Yanlei Diao UMass Amherst Nov 15, 2007

Introduction to XML. Data Integration. Structure in Data Representation. Yanlei Diao UMass Amherst Nov 15, 2007 Introduction to XML Yanlei Diao UMass Amherst Nov 15, 2007 Slides Courtesy of Ramakrishnan & Gehrke, Dan Suciu, Zack Ives and Gerome Miklau. 1 Structure in Data Representation Relational data is highly

More information

INTEGRATING WEB SERVICES INTO A WEB-BASED COLLEGE ADMISSION PORTAL SYSTEM

INTEGRATING WEB SERVICES INTO A WEB-BASED COLLEGE ADMISSION PORTAL SYSTEM INTEGRATING WEB SERVICES INTO A WEB-BASED COLLEGE ADMISSION PORTAL SYSTEM Dr. Billy Lim, Yan Sun School of Information Technology Illinois State University Normal, IL 61790-5150, USA [email protected], [email protected]

More information

How To Write A Technical Interoperability Standard For Spain

How To Write A Technical Interoperability Standard For Spain TECHNICAL INTEROPERABILITY STANDARD For E-Files. GOBIERNO DE ESPAÑA MINISTERIO DE HACIENDA Y ADMINISTRACIONES PÚBLICAS SECRETARÍA DE ESTADO DE ADMINISTRACIONES PÚBLICAS DIRECCIÓN GENERAL DE MODERNIZACIÓN

More information

XML Based Customizable Screen. Rev 1.1

XML Based Customizable Screen. Rev 1.1 XML Based Customizable Screen Rev 1.1 August 10, 2006 1. Introduction Starting from release version 1.0.2.X, GXP-2000 supports the idle screen customization. The designs of the displayed information and

More information

Parallels Operations Automation 5.4

Parallels Operations Automation 5.4 Parallels Operations Automation 5.4 Migration Manager Developer's Guide Revision 5.8 (May 15, 2012) Copyright 1999-2012 Parallels IP Holdings GmbH and its affiliates. All rights reserved. Parallels IP

More information

Comparison of IEC CIM and NRECA MultiSpeak

Comparison of IEC CIM and NRECA MultiSpeak Lessons Learned Part 2: Business Vocabulary Management Comparison of IEC CIM and NRECA MultiSpeak Scott Neumann Partner, Chairman, USNC IEC TC57 1 MultiSpeak Background MultiSpeak effort funded by National

More information

XML Schema Definition Language (XSDL)

XML Schema Definition Language (XSDL) Chapter 4 XML Schema Definition Language (XSDL) Peter Wood (BBK) XML Data Management 80 / 227 XML Schema XML Schema is a W3C Recommendation XML Schema Part 0: Primer XML Schema Part 1: Structures XML Schema

More information

Et tu, XML? Philip Wadler, Avaya Labs [email protected]

Et tu, XML? Philip Wadler, Avaya Labs wadler@avaya.com Et tu, XML? Philip Wadler, Avaya Labs [email protected] Acknowledgements This talk is joint work with: Mary Fernandez (AT&T) Jerome Simeon (Lucent) The W3C XML Query Working Group Disclaimer: This talk.

More information

Device Feature Key Synchronization

Device Feature Key Synchronization Device Feature Key Synchronization Feature Description Release 14.sp2 Document Version 1.2 DeviceFeatureKeySynchronizationFD ExtraView Number 36498 9737 Washingtonian Boulevard, Suite 350 Gaithersburg,

More information

Selling on Amazon Guide to XML

Selling on Amazon Guide to XML Selling on Amazon Guide to XML Editor s Note The XML Help documentation contains general information about using XML on Amazon. There are differences in using XML for various Amazon websites, based on

More information

Languages for Data Integration of Semi- Structured Data II XML Schema, Dom/SAX. Recuperación de Información 2007 Lecture 3.

Languages for Data Integration of Semi- Structured Data II XML Schema, Dom/SAX. Recuperación de Información 2007 Lecture 3. Languages for Data Integration of Semi- Structured Data II XML Schema, Dom/SAX Recuperación de Información 2007 Lecture 3. Overview XML-schema, a powerful alternative to DTDs XML APIs: DOM, a data-object

More information

Exercises: XSD, XPath Basi di da4 2

Exercises: XSD, XPath Basi di da4 2 Exercises: XSD, XPath Basi di da4 2 Disheng Qiu [email protected] Luca Rossi [email protected] Hints: Use a validator XSD Eclipse has a plugin for XML/XSD/DTD valida4on W3C Validator: hmp://www.w3.org/2001/03/webdata/xsv

More information

XML-BASED AUTOMATIC TEST DATA GENERATION

XML-BASED AUTOMATIC TEST DATA GENERATION Computing and Informatics, Vol. 27, 2008, 681 698 XML-BASED AUTOMATIC TEST DATA GENERATION Halil Ibrahim Bulbul Department of Computer Education Gazi University, Ankara, Turkey e-mail: [email protected]

More information

Geography Markup Language (GML) simple features profile

Geography Markup Language (GML) simple features profile Open Geospatial Consortium Inc. Date: 2006-04-25 Reference number of this document: OGC 06-049 Version: 1.0 Category: OpenGIS Implementation Specification Profile Editor: Panagiotis (Peter) A. Vretanos

More information

TCG Trusted Network Connect. TNC IF-MAP Metadata for Network Security

TCG Trusted Network Connect. TNC IF-MAP Metadata for Network Security TCG Trusted Network Connect TNC IF-MAP Metadata for Network Security Specification Version 1.0 Revision 25 13 September 2010 Published Contact: [email protected] TCG PUBLISHED Copyright TCG

More information

How To Write A Contract Versioning In Wsdl 2.2.2

How To Write A Contract Versioning In Wsdl 2.2.2 023_013613517X_20.qxd 8/26/08 6:21 PM Page 599 Chapter 20 Versioning Fundamentals 20.1 Basic Concepts and Terminology 20.2 Versioning and Compatibility 20.3 Version Identifiers 20.4 Versioning Strategies

More information

XML for RPG Programmers: An Introduction

XML for RPG Programmers: An Introduction XML for RPG Programmers: An Introduction OCEAN Technical Conference Catch the Wave Susan M. Gantner susan.gantner @ partner400.com www.partner400.com Your partner in AS/400 and iseries Education Copyright

More information

Temando Api. Release 1.13. Developer Documentation. Temando IT Department

Temando Api. Release 1.13. Developer Documentation. Temando IT Department Api Release 1.13 Developer Documentation IT Department 1 st Edition July 2009 Contents 1. INTRODUCTION... 3 1.1. PURPOSE... 3 1.2. REVISION HISTORY... 3 1.3. NAMESPACES... 5 1.4. DOCUMENT CONVENTIONS...

More information

Connecting to WebSphere ESB and WebSphere Process Server

Connecting to WebSphere ESB and WebSphere Process Server IBM Software Services for WebSphere Connecting to WebSphere ESB and WebSphere Process Server Andrew Ferrier, IT Consultant WebSphere ESB Specialist [email protected] History Loosely based on Redbook

More information

OMG ARAP --The MDA Approach to to a Finance Web Service

OMG ARAP --The MDA Approach to to a Finance Web Service OMG ARAP --The MDA Approach to to a Finance Web Service Arne J. Berre, SINTEF ([email protected]) Todd Boyle, Morten Jacobsen, Netaccount ([email protected], [email protected]) OMG GL

More information

Send your request via a SOAP-Request (e.g. with DotNET/SOAP, Java, PHP) to he following URL of our server:

Send your request via a SOAP-Request (e.g. with DotNET/SOAP, Java, PHP) to he following URL of our server: 1 QualityClick SOAP-API Documentation 1.1 URI soap uri: soap proxy: ' ' https://www.qc-domain.de/iqx_downlink'; https://www.qc-domain.de/iqx_downlink_soap.cgi'; 1.2 Method Send your request via a SOAP-Request

More information

Software Developer s Guide for the Cisco Secure Access Control System 5.1

Software Developer s Guide for the Cisco Secure Access Control System 5.1 Software Developer s Guide for the Cisco Secure Access Control System 5.1 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000

More information

Open Data in the Netherlands - opportunities for innovation. Bob Coret Gaenovium 7 October 2014

Open Data in the Netherlands - opportunities for innovation. Bob Coret Gaenovium 7 October 2014 Open Data in the Netherlands - opportunities for innovation Bob Coret Gaenovium 7 October 2014 Open data defined - http://opendefinition.org/ Open data can be freely used, modified, and shared by anyone

More information

Chapter 15 Working with Web Services

Chapter 15 Working with Web Services Section 3 Chapter 15: Working with Web Services 225 Chapter 15 Working with Web Services The next generation of Web applications involves the use of Web Services. Visual FoxPro 7 s new built-in XML capabilities

More information

1. Open Source J2EE Enterprise Service Bus Investigation

1. Open Source J2EE Enterprise Service Bus Investigation 1. Open Source J2EE Enterprise Service Bus Investigation By Dr Ant Kutschera, Blue Infinity SA, Geneva, Switzerland. 1. Objective The objective of this study is to specify the meaning of Enterprise Service

More information

http://www.guido.be/intranet/enqueteoverview/tabid/152/ctl/eresults...

http://www.guido.be/intranet/enqueteoverview/tabid/152/ctl/eresults... 1 van 70 20/03/2014 11:55 EnqueteDescription 2 van 70 20/03/2014 11:55 3 van 70 20/03/2014 11:55 4 van 70 20/03/2014 11:55 5 van 70 20/03/2014 11:55 6 van 70 20/03/2014 11:55 7 van 70 20/03/2014 11:55

More information

XML. Dott. Nicole NOVIELLI [email protected] http://www.di.uniba.it/intint/people/nicole.html. XML: extensible Markup Language

XML. Dott. Nicole NOVIELLI novielli@di.uniba.it http://www.di.uniba.it/intint/people/nicole.html. XML: extensible Markup Language XML Dott. Nicole NOVIELLI [email protected] http://www.di.uniba.it/intint/people/nicole.html XML: extensible Markup Language! Permits document authors to create markup language, that is text-based notations

More information

Java and XML parsing. EH2745 Lecture #8 Spring 2015. [email protected]

Java and XML parsing. EH2745 Lecture #8 Spring 2015. larsno@kth.se Java and XML parsing EH2745 Lecture #8 Spring 2015 [email protected] Lecture Outline Quick Review The XML language Parsing Files in Java Quick Review We have in the first set of Lectures covered the basics

More information

Service Oriented Architecture with Java Binildas CA Malhar Barai Vincenzo Caselli

Service Oriented Architecture with Java Binildas CA Malhar Barai Vincenzo Caselli Service Oriented Architecture with Java Binildas CA Malhar Barai Vincenzo Caselli Chapter No. 4 "Data and Services All Roads Lead to Enterprise Service Bus" In this package, you will find: A Biography

More information

XML and Data Management

XML and Data Management XML and Data Management XML standards XML DTD, XML Schema DOM, SAX, XPath XSL XQuery,... Databases and Information Systems 1 - WS 2005 / 06 - Prof. Dr. Stefan Böttcher XML / 1 Overview of internet technologies

More information

How To Use The Mets Document In A Webmail Document In An Html File On A Microsoft Powerbook 2.5.2.1.1 (Html) On A Macbook 2 (Html).1.5 (Html2)

How To Use The Mets Document In A Webmail Document In An Html File On A Microsoft Powerbook 2.5.2.1.1 (Html) On A Macbook 2 (Html).1.5 (Html2) Příloha č. 3 národního standardu pro elektronické systémy spisové služby Schéma XML pro vytvoření datového balíčku SIP

More information

No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation.

No Trade Secrets. Microsoft does not claim any trade secret rights in this 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

The Direct Project. Implementation Guide for Direct Project Trust Bundle Distribution. Version 1.0 14 March 2013

The Direct Project. Implementation Guide for Direct Project Trust Bundle Distribution. Version 1.0 14 March 2013 The Direct Project Implementation Guide for Direct Project Trust Bundle Distribution Version 1.0 14 March 2013 Version 1.0, 14 March 2013 Page 1 of 14 Contents Change Control... 3 Status of this Guide...

More information

Visualization of GML data using XSLT.

Visualization of GML data using XSLT. Visualization of GML data using XSLT. W.T.M.S.B.Tennakoon February, 2003 Visualization of GML data using XSLT. by W.T.M.S.B.Tennakoon Thesis submitted to the International Institute for Geo-information

More information

White Paper. SAP Solution Manager 7.0 Service Desk WebService API

White Paper. SAP Solution Manager 7.0 Service Desk WebService API White Paper SAP Solution Manager 7.0 May, 2009 Contents 1 SCENARIOS... 4 2 STATUS MODEL... 5 2.1 STATUS DEFINITION... 5 2.2 REQUESTER... 6 2.3 PROVIDER... 6 3 REPLICATION OF CONTACT PERSONS... 7 3.1 GENERAL...

More information

EHR-IIS Interoperability Enhancement Project. Transport Layer Protocol Recommendation Formal Specification. Version 1.

EHR-IIS Interoperability Enhancement Project. Transport Layer Protocol Recommendation Formal Specification. Version 1. EHR-IIS Interoperability Enhancement Project Transport Layer Protocol Recommendation Formal Specification Version 1.1 June 4, 2014 Transport Layer Expert Panel EHR-IIS Interoperability Enhancement Project

More information

MATHM-47150 Structured Documents

MATHM-47150 Structured Documents MATHM-47150 Structured Documents Adjunct Professor Ossi Nykänen, [email protected] Tampere University of Technology, Dept. of Mathematics, Hypermedia Laboratory Slides for the Spring 2012 course, 6 cu,

More information

Designing the Service Contract

Designing the Service Contract Designing the Service Contract Service contracts provide the glue that enables us to assemble disparate pieces of software or services into complete, composite applications. If we are to build a sustainable

More information

Test Execution Logging and Visualisation Techniques 1

Test Execution Logging and Visualisation Techniques 1 1 Test Execution Logging and Visualisation Techniques 1 George Din 1, Justyna Zander 1 and Stephan Pietsch 2 1 Fraunhofer Fokus, TIP Kaiserin-Augusta-Allee 31 10589 Berlin, Germany [email protected],

More information

Design Structure Analysis and Transaction Recording in SystemC Designs: A Minimal-Intrusive Approach

Design Structure Analysis and Transaction Recording in SystemC Designs: A Minimal-Intrusive Approach Design Structure Analysis and Transaction Recording in SystemC Designs: A Minimal-Intrusive Approach Wolfgang Klingauf, Manuel Geffken TU Braunschweig, E.I.S. (Prof. U. Golze) 38106 Braunschweig, Germany

More information

GeoSciML Cookbook. How to serve a GeoSciML version 2 Web Feature Service (WFS) using Open Source Software. Version 1.2-1 -

GeoSciML Cookbook. How to serve a GeoSciML version 2 Web Feature Service (WFS) using Open Source Software. Version 1.2-1 - GeoSciML Cookbook How to serve a GeoSciML version 2 Web Feature Service (WFS) using Open Source Software Version 1.2-1 - Contents 1 IN TRODUCTION... - 3-1.1 The purpose of this cookbook... - 3-1.2 Who

More information

XML - A Practical Application and Design

XML - A Practical Application and Design Twente University Faculty of Informatics Database group Distributed XML Database Systems Marko Smiljanić, Henk Blanken, Maurice van Keulen, Willem Jonker October 2002 Abstract Invention of XML as a universal

More information

[MS-MDE]: Mobile Device Enrollment Protocol. Intellectual Property Rights Notice for Open Specifications Documentation

[MS-MDE]: Mobile Device Enrollment Protocol. Intellectual Property Rights Notice for Open Specifications Documentation [MS-MDE]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation for protocols, file formats, languages,

More information

Modernize your NonStop COBOL Applications with XML Thunder September 29, 2009 Mike Bonham, TIC Software John Russell, Canam Software

Modernize your NonStop COBOL Applications with XML Thunder September 29, 2009 Mike Bonham, TIC Software John Russell, Canam Software Modernize your NonStop COBOL Applications with XML Thunder September 29, 2009 Mike Bonham, TIC Software John Russell, Canam Software Agenda XML Overview XML Thunder overview Case Studies Q & A XML Standard

More information

Relationele Databases 2002/2003

Relationele Databases 2002/2003 1 Relationele Databases 2002/2003 Hoorcollege 5 22 mei 2003 Jaap Kamps & Maarten de Rijke April Juli 2003 Plan voor Vandaag Praktische dingen 3.8, 3.9, 3.10, 4.1, 4.4 en 4.5 SQL Aantekeningen 3 Meer Queries.

More information

Merchant Returns Service International

Merchant Returns Service International Merchant Returns Service International Application Programming Interface User s Guide Document Version 1.2 (09/27/2013) 1 Version History Version Date of Summary of Additions Addition 1.0 09/14/2011 Initial

More information

SOAP. SOAP SOAP d Apache/IBM Invocation générique : SOAP. Message XML SOAP. SOAP d Apache/IBM Invocation générique : SOAP

SOAP. SOAP SOAP d Apache/IBM Invocation générique : SOAP. Message XML SOAP. SOAP d Apache/IBM Invocation générique : SOAP Service Web? Web Services Description Langage & SOAP Service Web? Envoi d un message! Service Web? I m hungry! Service Web Obtention d une response IUP1 Novembre 2002 1 Services Web Interfaces Services

More information

Zeep Documentation. Release 0.14.0.dev0. Michael van Tellingen

Zeep Documentation. Release 0.14.0.dev0. Michael van Tellingen Zeep Documentation Release 0.14.0.dev0 Michael van Tellingen Aug 01, 2016 Contents 1 Quick Introduction 3 2 Getting started 5 2.1 A simple use-case............................................ 5 2.2 Nested

More information

DRAFT. Standard Definition. Extensible Event Stream. Christian W. Günther Fluxicon Process Laboratories [email protected]

DRAFT. Standard Definition. Extensible Event Stream. Christian W. Günther Fluxicon Process Laboratories christian@fluxicon.com Extensible Event Stream Standard Definition Christian W. Günther Fluxicon Process Laboratories [email protected] XES Version: 1.0 Revision: 1 November 25, 2009 DRAFT Introduction Event logs, as they

More information

1/20/2016 INTRODUCTION

1/20/2016 INTRODUCTION INTRODUCTION 1 Programming languages have common concepts that are seen in all languages This course will discuss and illustrate these common concepts: Syntax Names Types Semantics Memory Management We

More information

Ź Ź ł ź Ź ś ź ł ź Ś ę ż ż ł ż ż Ż Ś ę Ż Ż ę ś ź ł Ź ł ł ż ż ź ż ż Ś ę ż ż Ź Ł Ż Ż Ą ż ż ę ź Ń Ź ś ł ź ż ł ś ź ź Ą ć ś ś Ź Ś ę ę ć ż Ź Ą Ń Ą ł ć ć ł ł ź ę Ś ę ś ę ł ś ć ź ś ł ś ł ł ł ł ć ć Ś ł ź Ś ł

More information

Semantic Web Languages: RDF vs. SOAP Serialisation

Semantic Web Languages: RDF vs. SOAP Serialisation : University of Dortmund Computer Science VIII [email protected] : Why look at something else? Is RDF(S) not sufficient? What is SOAP? Why is SOAP important? Is SOAP Serialisation really an alternative

More information

XML Schemadefinition

XML Schemadefinition Vorlesung IFS in der Bioinformatik SS 2011 Modul 2: a.univ.-prof. Dr. Werner Retschitzegger IFS Johannes Kepler University Linz www.jku.ac.at Institute of Bioinformatics www.bioinf.jku.at Information Systems

More information

Visualizing ECL Results Technical Preview

Visualizing ECL Results Technical Preview Visualizing ECL Results Technical Preview Provided by HPCCSystems Visualizing ECL Results Boca Raton Documentation Team November 2011 Version 3.4.0b (Technical Preview) Copyright 2011 HPCC Systems. All

More information

Facilitating Business Interoperability from the Semantic Web

Facilitating Business Interoperability from the Semantic Web Facilitating Business Interoperability from the Semantic Web Roberto García, Rosa Gil Universitat de Lleida Jaume II 69, E-25001 Lleida, Spain [email protected] [email protected] Abstract. Most approaches

More information

BPMN Extension forbusiness Process Monitoring

BPMN Extension forbusiness Process Monitoring BPMN Extension forbusiness Process Monitoring Anne Baumgrass, Nico Herzberg, Andreas Meyer,Mathias Weske Hasso Plattner Institute at the University of Potsdam Prof.-Dr.-Helmert-Str. 2 3, D-14482 Potsdam,

More information

keyon Luna SA Monitor Service Administration Guide 1 P a g e Version Autor Date Comment

keyon Luna SA Monitor Service Administration Guide 1 P a g e Version Autor Date Comment Luna SA Monitor Service Administration Guide Version Autor Date Comment 1.1 Thomas Stucky 25. July 2013 Update installation instructions. 1 P a g e Table of Contents 1 Overview... 3 1.1 What is the keyon

More information

CHAPTER 9: DATAPORT AND XMLPORT CHANGES

CHAPTER 9: DATAPORT AND XMLPORT CHANGES Chapter 9: Dataport and XMLport Changes CHAPTER 9: DATAPORT AND XMLPORT CHANGES Objectives Introduction The objectives are: Provide an overview of dataport changes. Discuss changes in XMLport object and

More information

+ <xs:element name="productsubtype" type="xs:string" minoccurs="0"/>

+ <xs:element name=productsubtype type=xs:string minoccurs=0/> otcd.ntf.001.01.auctiondetail.. otcd.ntf.001.01.auctionresult - + otcd.ntf.001.01.automaticterminationsummary

More information

Open Grid Services Infrastructure (OGSI) Version 1.0

Open Grid Services Infrastructure (OGSI) Version 1.0 GWD-R (draft-ggf-ogsi-gridservice-33) Open Grid Services Infrastructure (OGSI) http://www.ggf.org/ogsi-wg Editors: S. Tuecke, ANL K. Czajkowski, USC/ISI I. Foster, ANL J. Frey, IBM S. Graham, IBM C. Kesselman,

More information

Oracle Agile Engineering Data Management

Oracle Agile Engineering Data Management Oracle Agile Enterprise Integration Platform Administration Guide for Agile e6.1.3.0 Part No. E50949-01 January 2014 Copyright and Trademarks Copyright 1995, 2014,Oracle and/or its affiliates. All rights

More information

Service Description: NIH GovTrip - NBS Web Service

Service Description: NIH GovTrip - NBS Web Service 8 July 2010 Page 1 Service Description: NIH GovTrip - NBS Web Service Version # Change Description Owner 1.0 Initial Version Jerry Zhou 1.1 Added ISC Logo and Schema Section Ian Sebright 8 July 2010 Page

More information

The VONK Ancestral line of Dirk Arie Vonk (1910-1986)

The VONK Ancestral line of Dirk Arie Vonk (1910-1986) The VONK Ancestral line of Dirk Arie Vonk (1910-1986) By Richard L. Tolman, Ph. D. First Generation 1. Pieter van der Vonk was born abt 1660 of Hazerswoude, Zuid-Holland, Netherlands. 1 2 i. SIJMON VAN

More information

Developing a Web Service Based Application for Mobile Client

Developing a Web Service Based Application for Mobile Client Developing a Web Service Based Application for Mobile Client Ting Wu Pin Zheng Supervisor & Examiner Associate Prof. Vladimir Vlassov KTH/ICT/ECS Master of Science Thesis Stockholm, Sweden 2006 ICT/ECS-2006-138

More information