rdf sparql
play

RDF & SPARQL 320302 Databases & WebApplications (P. Baumann) - PowerPoint PPT Presentation

RDF & SPARQL 320302 Databases & WebApplications (P. Baumann) The Semantic Web Stack research / vapourware solid implementations RDF + RDFS WSDL + UDDI URI Unicode SOAP HTTP / SMTP / TCP 320302 Databases & WebServices (P.


  1. RDF & SPARQL 320302 Databases & WebApplications (P. Baumann)

  2. The Semantic Web Stack research / vapourware solid implementations RDF + RDFS WSDL + UDDI URI Unicode SOAP HTTP / SMTP / … TCP 320302 Databases & WebServices (P. Baumann) 2

  3. RDF  Resource Description Framework (RDF) • framework for describing resources on the web, identified by URIs = very simple language for making assertions • model for data, and a syntax independent parties can exchange & use it • Query language: SPARQL, see later • designed to be read and understood by computers, not designed for being displayed to people  RDF (conceptual model) is independent from XML (data exchange) • XML is a transfer syntax (carrier) for RDF, not a component of RDF • RDF data might never occur in XML form  W3C Recommendation, part of W3C's Semantic Web Activity 320302 Databases & WebServices (P. Baumann) 3

  4. RDF - Examples of Use  Describing properties for shopping items • such as price and availability  Describing time schedules for web events  Describing information about web pages • such as content, author, created and modified date  Describing content and rating for web pictures  Describing content for search engines  Describing electronic libraries 320302 Databases & WebServices (P. Baumann) 4

  5. RDF Data Model  Conceptual model: directed, labeled graphs  RDF statements consist of = subject = object OO Model • resources (= nodes) = predicate = attribute in • which have properties = object = value Databases? • which have values (= nodes, strings) resource value property  Ex: “ http://www.w3.org/TR/REC-rdf-syntax/ has the author Ora Lassila ” http://www.w3.org/TR/REC-rdf-syntax/ “Ora Lassila” author 320302 Databases & WebServices (P. Baumann) 5

  6. RDF Example "piotr@ideanest.com" "Piotr Kaminski" email name Legend homepage Resources creator Literals http://www.ideanest.com/ • literals are primitive values • anonymous bnodes are identified by properties 320302 Databases & WebServices (P. Baumann) 6

  7. Alternative RDF Representations Graphs: requires eecs/320302 eecs/320212 prefix: http://www.jacobs-university.de/ compact & readable Notation3: @prefix in:http://www.iu-bremen.de/ . alternative to RDF's in:eecs/320302 in:requires in:eecs/320212 . XML syntax XML: <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:in="http://www.iu-bremen.de/"> <rdf:description rdf:about="http://www.jacobs-university.de/eecs/320302"> <in:requires rdf:resource="http://www.jacobs-university.de/eecs/320212"/> </rdf:description> </rdf:RDF> RDF doc root { }: { " http://www. jacobs-university.de/eecs/320302 “, requires, “ http://www. jacobs-university.de/eecs/320212 “ } 320302 Databases & WebServices (P. Baumann) 7

  8. Building Complex Networks  Corresponding triples: • { “http://www.w 3.org/TR/PR-rdf- syntax/”, dc:Creator, x } • { x, p:Name, “Ora Lassila” } • { x, p:EMail, “ora.lassila@nokia.com” } anonymous nodes http://www.w3.org/TR/REC-rdf-syntax/ dc:Creator “Ora Lassila” p:Name p:EMail “ora.lassila@nokia.com” 320302 Databases & WebServices (P. Baumann) 8

  9. SPARQL  = Simple Protocol and RDF Query Language • W3C recommendation  = QL for RDF • extract information in the form of URIs, blank nodes, plain and typed literals • extract RDF subgraphs • construct new RDF graphs based on information in the queried graphs  Let‘s taste the flavor... 320302 Databases & WebServices (P. Baumann) 9

  10. From SQL To SPARQL SELECT name, email FROM Person 320302 Databases & WebServices (P. Baumann) 10

  11. From SQL To SPARQL SELECT ?name ?email WHERE { ?person rdf:type foaf:Person. ?person foaf:name ?name. ?person foaf:mbox ?email. } 320302 Databases & WebServices (P. Baumann) 11

  12. From SQL To SPARQL PREFIX foaf: <http://xmlns.com/foaf/0.1/> SELECT ?name ?email WHERE { ?person rdf:type foaf:Person. ?person foaf:name ?name. ?person foaf:mbox ?email. } 320302 Databases & WebServices (P. Baumann) 12

  13. FOAF  FOAF (“Friend of a friend”) = a machine -readable ontology • descriptive vocabulary expressed in RDF and OWL • Profile = concrete instance of a vocabulary (ie, set of terms) • unique identifier (e- mail address, URI, …) for defining relationships → decentralised!  can describe persons, activities, relations to other people & objects • Ex: FOAF profiles to find all people living in Europe, list all people both you and a friend of yours know  FOAF Project defines & extends vocabulary of a FOAF profile • started in 2000 by Libby Miller and Dan Brickley • first Social Semantic Web application 320302 Databases & WebServices (P. Baumann) 13

  14. FOAF: Tech  WebID Protocol = decentralized secure authentication protocol utilizing FOAF profile information + SSL • usual SSL utilization: require trusted certificate authority • Here: does not require dedicated certificate authority to perform user authorization → identities can be minted for users easily by authorities → FOAF -based web of trust established gradually, without formal key signing parties • makes identity more trustworthy + and hard for anyone (even the original issuing authority) to forge  Related: • Description of a Career (DOAC) • Description of a Project (DOAP) 320302 Databases & WebServices (P. Baumann) 14

  15. SPARQL – Example 1  Data <http://example.org/book/book1> <http://purl.org/dc/elements/1.1/title> (1 triple): "SPARQL Tutorial" . SELECT ?title WHERE {  Query: <http://example.org/book/book1> <http://purl.org/dc/elements/1.1/title> ?title . } title "SPARQL Tutorial" . 320302 Databases & WebServices (P. Baumann) 15

  16. SPARQL – Example 2 @prefixfoaf: <http://xmlns.com/foaf/0.1/> . _:a foaf:name "Johnny Lee Outlaw" . _:a foaf:mbox <mailto:jlow@example.com> . _:b foaf:name "Peter Goodguy" . PREFIX foaf: <http://xmlns.com/foaf/0.1/> _:b foaf:mbox <mailto:peter@example.org> . SELECT ?name ?mbox _:c foaf:mbox <mailto:carol@example.org> . WHERE { ?x foaf:name ?name . ?x foaf:mbox?mbox name mbox } "Johnny Lee Outlaw“ <mailto:jlow@example.com> "Peter Goodguy “ <mailto:peter@example.org> 320302 Databases & WebServices (P. Baumann) 16

  17. Anatomy of a Query 320302 Databases & WebServices (P. Baumann) 17

  18. RDF Datasets 320302 Databases & WebServices (P. Baumann) 18

  19. Intermediate Summary  RDF to model ontologies & graphs  SPARQL to query RDF • Return data items, graphs, Booleans • Integrates into SQL  Implementations: • OS: Apache Jena (Java), Sesame (Java), RDF-Query (Perl), Dydra (cloud), ... • Commercial: Oracle Semantic Technologies, OpenLink Virtuoso, ...  See also: • Planet RDF, Triplr 320302 Databases & WebServices (P. Baumann) 19

  20. Recap: where do we stand with Semantic Web Services? 320302 Databases & WebServices (P. Baumann) 20

  21. Step 1: What We See WWW2002 The eleventh international world wide web conference Sheraton waikiki hotel, Honolulu, hawaii, USA 7-11 may 2002, 1 location 5 days learn interact Registered participants coming from australia, canada, chile denmark, france, germany, ghana, hong kong,, norway, singapore, switzerland, the united kingdom, the united states, vietnam, zaire Register now On the 7 th May Honolulu will provide the backdrop of the eleventh international world wide web conference. This prestigious event.. Speakers confirmed Tim Berners-Lee Tim is the well known inventor of the Web, … Ian Foster Ian is the pioneer of the Grid, the next generation internet … 320302 Databases & WebServices (P. Baumann) 21

  22. Step 1: What a Machine Sees                  320302 Databases & WebServices (P. Baumann) 22

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend