Developing Linked Data Applications

Slides:



Advertisements
Similar presentations
XPointer and HTTP Range A possible design for a scalable and extensible RDF Data Access protocol. Bryan Thompson draft Presented to the RDF.
Advertisements

Hypertext Transfer PROTOCOL ----HTTP Sen Wang CSE5232 Network Programming.
Web Service Ahmed Gamal Ahmed Nile University Bioinformatics Group
Semantic Web Introduction
1 The HyperText Transfer Protocol: HTTP Nick Smith Stuart Alley Tara Tjaden.
HTTP HyperText Transfer Protocol Part 3.
HTTP Overview Vijayan Sugumaran School of Business Administration Oakland University.
1 The World Wide Web. 2  Web Fundamentals  Pages are defined by the Hypertext Markup Language (HTML) and contain text, graphics, audio, video and software.
Web Architecture Dr. Frank McCown Intro to Web Science Harding University This work is licensed under a Creative Commons Attribution-NonCommercial- ShareAlike.
FTP (File Transfer Protocol) & Telnet
CP476 Internet Computing Lecture 5 : HTTP, WWW and URL 1 Lecture 5. WWW, HTTP and URL Objective: to review the concepts of WWW to understand how HTTP works.
Web HTTP Hypertext Transfer Protocol. Web Terminology ◘Message: The basic unit of HTTP communication, consisting of structured sequence of octets matching.
Open Data Protocol * Han Wang 11/30/2012 *
REST - Introduction Based on material from InfoQ.com (Stefan Tilkov) And slides from MindTouch.com (Steve Bjorg) 1.
Web Server Design Week 4 Old Dominion University Department of Computer Science CS 495/595 Spring 2010 Martin Klein 2/03/10.
1 Seminar on Service Oriented Architecture Principles of REST.
Appendix E: Overview of HTTP ©SoftMoore ConsultingSlide 1.
Introduction to the Linked Data Platform (LDP) Hector Correa The Pennsylvania State University.
RESTful Web Services What is RESTful?
RDF and Relational Databases
Web Authoring with Dreamweaver. Unit Objectives  Be able to define keywords: HTML, HTTP (protocol), browser, web server, client/server, tag, attribute,
Web Technologies Lecture 10 Web services. From W3C – A software system designed to support interoperable machine-to-machine interaction over a network.
Overview of Servlets and JSP
Linked Data Publishing on the Semantic Web Dr Nicholas Gibbins
Linked Data Publishing on the Semantic Web Dr Nicholas Gibbins
REST API Design. Application API API = Application Programming Interface APIs expose functionality of an application or service that exists independently.
Lecture # 1 By: Aftab Alam Department Of Computer Science University Of Peshawar Internet Programming.
What’s Really Happening
REST in Practice COMP6017 Topics on Web Services Dr Nicholas Gibbins –
Slug: A Semantic Web Crawler Leigh Dodds Engineering Manager, Ingenta Jena User Conference May 2006.
Hypertext Transfer Protocol (HTTP) COMP6218 Web Architecture Dr Nicholas Gibbins –
Tiny http client and server
Block 5: An application layer protocol: HTTP
Developing Linked Data Applications
How HTTP Works Made by Manish Kushwaha.
Linked Data Web that can be processed by machines
WWW and HTTP King Fahd University of Petroleum & Minerals
Content from Python Docs.
HTTP – An overview.
Better RESTFul API – Best Practices
Web Development Web Servers.
HTTP request message: general format
z/Ware 2.0 Technical Overview
1993 version of Mosaic browser.
REST- Representational State Transfer Enn Õunapuu
Vocabulary Prototype: A preliminary sketch of an idea or model for something new. It’s the original drawing from which something real might be built or.
COMP2322 Lab 2 HTTP Steven Lee Feb. 8, 2017.
Node.js Express Web Services
An introduction to REST for SharePoint 2013
HTTP Protocol Specification
Advanced Web-based Systems | Misbhauddin
Hypertext Transfer Protocol
Hypertext Transport Protocol
Web Caching? Web Caching:.
Vocabulary Prototype: A preliminary sketch of an idea or model for something new. It’s the original drawing from which something real might be built or.
Representational State Transfer
HTTP Protocol.
WEB API.
Chapter 27 WWW and HTTP.
COMP 150-IDS: Internet Scale Distributed Systems (Spring 2016)
$, $$, $$$ API testing Edition
EE 122: HyperText Transfer Protocol (HTTP)
Hypertext Transfer Protocol (HTTP)
WebDAV Design Overview
CC La Web de Datos Primavera 2018 Lecture 8: SPARQL [1.1]
Kevin Harville Source: Webmaster in a Nutshell, O'Rielly Books
WEB SERVICES From Chapter 19, Distributed Systems
Web Server Design Week 5 Old Dominion University
HTTP Hypertext Transfer Protocol
CS/COE 1520 Jarrett Billingsley
Presentation transcript:

Developing Linked Data Applications COMP6215 Semantic Web Technologies Professor Steffen Staab, 2016 Most slides courtesy by Dr. Nick Gibbins

One API to bind them all… You want to: Provide interactive interfaces Let machines consume data Represent facts about things and ideas The protocol for this is HTTP plus…. GSP, as its name implies, can be seen as a HTTP protocol definition on how to interact with a quad (graph) store. The model, as seen as from HTTP clients, can be that HTTP resources are equal to a graph. This is useful for HTTP clients that know they are working with graph stores. These graphs group triples under one URI, but do not imply any extra functionality. In LDP, this is not the case. LDP looks to abstract away the server storage model and focus on the protocol for the lifecycle of HTTP resources and relationships (links and containers). LDP could be implemented with a graph store underneath. LDP specific semantics, confined in the RDF, imply certain server behaviour. An important example is an LDP ‘collection’. This distinction is discussed later on. Nice read: http://ruben.verborgh.org/blog/2013/11/29/the-lie-of-the-api/

Overview Publishing Linked Data SPARQL 1.1 Graph Store Protocol Linked Data Platform

Publishing Linked Data

Publishing Linked Data SW Best Practice Recipes for Publishing RDF Vocabularies Also used for published RDF Linked Data in general Uses content negotiation (HTTP Accept: header) to redirect clients to different representations of resources Machine-readable RDF versus human-readable HTML

Conflicting objectives Lookup what an URI stands for: People receive documents to read SW agents receive data to process Can be communicated via content negotiation Each URI should stand for *one* thing: document XOR thing in the world XOR address data

Cool URIs ID RDF HTML Resource identifier (IRI) SW agents web browsers RDF document URL HTML document URL

Cool URIs ID RDF HTML http://example.org/id/alice Accept: application/rdf+xml 303 See Other Location: http://example.org/data/alice Accept: text/html 303 See Other Location: http://example.org/data/alice RDF HTML http://example.org/data/alice http://example.org/people/alice

303 See Other From RFC7231 (HTTP/1.1 Semantics and Content): “A 303 response to a GET request indicates that the origin server does not have a representation of the target resource that can be transferred by the server over HTTP. However, the Location field value refers to a resource that is descriptive of the target resource, such that making a retrieval request on that other resource might result in a representation that is useful to recipients without implying that it represents the original target resource”

303 Redirection Client tries to GET HTML representation of resource 303 redirect to HTML resource, followed by GET GET /<id> HTTP/1.1 Accept: text/html 303 See Other Location: http://example.org/<id>.html GET /<id>.html HTTP/1.1 Accept: text/html client example.org 200 OK Content-Type: text/html html

303 Redirection Client tries to GET an RDF representation of resource 303 redirect to RDF resource, followed by GET GET /<id> HTTP/1.1 Accept: application/rdf+xml 303 See Other Location: http://example.org/<id>.rdf GET /<id>.rdf HTTP/1.1 Accept: application/rdf+xml client example.org 200 OK Content-Type: application/rdf+xml

Publishing is only half the story... User Interface Client Application Logic Server SPARQL RDF Triplestore RDF Files RDF RDF RDF RDF

What’s wrong with this picture? Based on a triplestore-centric view of linked data Graphs are managed by the triplestore How does the application interact with the RDF files? How does caching work? (triplestore refresh frequency, etc) How do writes work? (only to triplestore?)

SPARQL 1.1 Graph Store Protocol

SPARQL 1.1 Graph Store Protocol An approach to managing a collection of RDF graphs A set of rules for HTTP operations on named graphs An alternative to SPARQL 1.1 Update RESTful An architecture for read-write Linked Data

Protocol Model: Direct Graph Identification IRI identifies PUT/POST DELETE GET RDF Graph Content serialisation of interpreted as RDF Graph

Protocol Model: Indirect Graph Identification http://...?graph=encoded IRI identifies PUT/POST DELETE GET RDF Graph Content the naming authority associated with the IRI of an RDF graph in a Graph Store is not the same as the server managing the identified RDF content the naming authority is not available the IRI is not dereferenceable (i.e., when dereferenced, it does not produce a RDF graph representation) interpreted as serialisation of identifies? RDF Graph IRI

Graph Store Protocol: GET GET /store?graph=<graph iri> HTTP/1.1 Host: example.org Accept: text/turtle HTTP/1.1 200 OK Content-Type: text/turtle <rdf content> Equivalent to : CONSTRUCT { ?s ?p ?o } WHERE { GRAPH <graph iri> { ?s ?p ?o } } Issues of accessing open SPARQL endpoints: efficiency Get for IRIs – describe – very small What‘s wrong with this approach?

Graph Store Protocol: POST POST /store?graph=<graph iri> HTTP/1.1 Host: example.org Content-Type: text/turtle <rdf content> HTTP/1.1 200 OK Equivalent to : INSERT DATA { GRAPH <graph iri> { <rdf content> } }

Graph Store Protocol: POST graph creation POST /store?graph=http://example.org/store HTTP/1.1 Host: example.org Content-Type: text/turtle <rdf content> HTTP/1.1 201 Created Location: http://example.org/store?graph=<graph iri> Equivalent to : INSERT DATA { GRAPH <graph iri> { <rdf content> } }

Graph Store Protocol: PUT PUT /store?graph=<graph iri> HTTP/1.1 Host: example.org Content-Type: text/turtle <rdf content> HTTP/1.1 204 No Content Equivalent to : DROP SILENT GRAPH <graph iri>; INSERT DATA { GRAPH <graph iri> { <rdf content> } }

Graph Store Protocol: DELETE DELETE /store?graph=<graph iri> HTTP/1.1 Host: example.org HTTP/1.1 204 No Content Equivalent to : DROP GRAPH <graph iri>

Linked Data Platform

Operating with Data in the Web SPARQL Graph Store Http Protocol Assumes that you know it is handling Graphs Quads If you can do that: everything is fine! Linked Data Platform Assumes URIs stand for resources containers Everything is „purely Web“

The Linked Data Platform An approach to rationalising linked data applications: A set of rules for HTTP operations on web resources Based on RDF RESTful Another architecture for read-write Linked Data Hot off the press! Linked Data Platform became a Recommendation on 26 Feb 2015 Linked Data Platform Primer is still a draft (this lecture is based on the version dated 16 Mar 2015)

Linked Data Platform Basics Two types of Linked Data Platform Resources: LDP RDF Sources (LDP-RS) State can be represented using RDF LDP Non-RDF Sources (LDP-NR) HTML, images, other formats

LDP Resources LDP servers must advertise their LDP support in response to all requests GET /foo HTTP/1.1 200 OK Link: http://www.w3.org/ns/ldp#Resource; rel=type

LDP Containers Evolution of the RESTful pattern for collections of objects Use RDF representation of container to indicate items in container Method Behaviour GET List the members of the collection (list of URIs) PUT Replace the entire collection with another collection POST Create a new member in the collection and automatically assign it a URI DELETE Delete the entire collection

LDP Containers Path Method Description /<container>/ GET List resources in container POST Create a new resource in container PUT Update the description/contents of the container PATCH DELETE Not allowed /<container>/<resource> Retrieve resource Update resource Partial update to resource Delete resource /*/* OPTIONS Discover allowed operations HEAD Retrieve only metadata

LDP Containers Three varieties of LDP container: Basic container (LDP-BC) Uses LDP vocabulary to indicate container membership Direct container (LDP-DC) Allows use of other vocabularies to indicate membership Indirect container (LDP-IC) Allows non-information resources as members

Basic Containers

LDP Basic Containers Container Resources ldp:contains ldp:contains

LDP Basic Container: OPTIONS “What can I do with this container?” Returns list of HTTP methods OPTIONS /stuff/ HTTP/1.1 HTTP/1.1 204 No Content ALLOW: <methods> example.org

LDP Basic Container: OPTIONS OPTIONS /stuff/ HTTP/1.1 Host: example.org Accept: text/turtle HTTP/1.1 204 No Content Content-Type: text/turtle Date: Thu, 12 Jun 2014 18:26:59 GMT ETag: "8caab0784220148bfe98b738d5bb6d13" Accept-Post: text/turtle, application/ld+json, image/png Allow: POST,GET,OPTIONS,HEAD,PUT,DELETE Link: <http://www.w3.org/ns/ldp#BasicContainer>; rel="type”

LDP Basic Container: GET “What’s in this container?” RDF representation: Identifies resource as a ldp:BasicContainer Lists members of container using ldp:contains property GET /stuff/ HTTP/1.1 Accept: text/turtle HTTP/1.1 200 OK Content-Type: text/turtle <RDF representation of container> example.org

LDP Basic Container: GET GET /stuff/ HTTP/1.1 Host: example.org Accept: text/turtle HTTP/1.1 200 OK Content-Type: text/turtle Date: Thu, 12 Jun 2014 18:26:59 GMT ETag: "8caab0784220148bfe98b738d5bb6d13" Accept-Post: text/turtle, application/ld+json Allow: POST,GET,OPTIONS,HEAD,PUT Link: <http://www.w3.org/ns/ldp#BasicContainer>; rel="type” @prefix dcterms: <http://purl.org/dc/terms/>. @prefix ldp: <http://www.w3.org/ns/ldp#>. <http://example.org/stuff/> a ldp:BasicContainer; dcterms:title ”My stuff"; ldp:contains <http://example.org/stuff/photo>.

LDP Basic Container: POST “Add this to the container” Hint for IRI of created resource in Slug: header POST /stuff/ HTTP/1.1 Content-Type: text/turtle <content> HTTP/1.1 201 Created Location: <resource IRI> example.org

LDP Basic Container: POST POST /stuff/ HTTP/1.1 Host: example.org Slug: foaf Content-Type: text/turtle @prefix foaf: <http://xmlns.com/foaf/0.1/>. <> a foaf:PersonalProfileDocument; foaf:primaryTopic <http://id.ecs.soton.ac.uk/person/1269> . <http://id.ecs.soton.ac.uk/person/1269> a foaf:Person; foaf:name “Nick Gibbins” ; foaf:depiction <http://example.org/stuff/photo>. HTTP/1.1 201 Created Location: http://example.org/stuff/foaf Link: <http://www.w3.org/ns/ldp#Resource>; rel=“type” Content-Length: 0 Slug – gives server a URI hint for the created resource

LDP Basic Container: GET GET /stuff/ HTTP/1.1 Host: example.org Accept: text/turtle HTTP/1.1 200 OK Content-Type: text/turtle Date: Thu, 12 Jun 2014 18:26:59 GMT ETag: "8caab0784220148bfe98b738d5bb6d13" Accept-Post: text/turtle, application/ld+json Allow: POST,GET,OPTIONS,HEAD,PUT Link: <http://www.w3.org/ns/ldp#BasicContainer>; rel="type” @prefix dcterms: <http://purl.org/dc/terms/>. @prefix ldp: <http://www.w3.org/ns/ldp#>. <http://example.org/stuff/> a ldp:BasicContainer; dcterms:title ”My stuff”; ldp:contains <http://example.org/stuff/photo>, <http://example.org/stuff/foaf> .

LDP Basic Container: POST non-RDF POST /stuff/ HTTP/1.1 Host: example.org Slug: usericon Content-Type: image/png Content-Length: 1234 <binary data> HTTP/1.1 201 Created Location: http://example.org/stuff/usericon Link: <http://www.w3.org/ns/ldp#Resource>; rel=“type” Link: <http://example.org/stuff/usericon/meta>; rel=“describedBy” Content-Length: 0 Slug – gives server a URI hint for the created resource

LDP Basic Container: GET non-RDF GET /stuff/usericon HTTP/1.1 Host: example.org HTTP/1.1 200 OK Content-Type: image/png Link: <http://www.w3.org/ns/ldp#Resource>; rel=“type” Link: <http://example.org/stuff/usericon/meta>; rel=“describedBy” Content-Length: 1234 <binary data> Slug – gives server a URI hint for the created resource

LDP Basic Container: GET non-RDF meta GET /stuff/usericon/meta HTTP/1.1 Host: example.org HTTP/1.1 200 OK Content-Type: text/turtle @prefix ldp: <http://www.w3.org/ns/ldp#>. <http://example.org/stuff/usericon> a ldp:Resource . Slug – gives server a URI hint for the created resource

LDP Resource: PUT “Update this resource” Use If-Match: to make avoid lost updates (compare to ETag:) PUT /stuff/foaf HTTP/1.1 Content-Type: text/turtle <content> HTTP/1.1 204 No Content example.org

LDP Resource: PUT POST /stuff/foaf HTTP/1.1 Host: example.org If-Match: W/”12345678” Content-Type: text/turtle @prefix foaf: <http://xmlns.com/foaf/0.1/>. <> a foaf:PersonalProfileDocument; foaf:primaryTopic <http://id.ecs.soton.ac.uk/person/1269> . <http://id.ecs.soton.ac.uk/person/1269> a foaf:Person; foaf:name “Nick Gibbins” ; foaf:depiction <http://example.org/stuff/usericon>. HTTP/1.1 204 No Content Link: <http://www.w3.org/ns/ldp#Resource>; rel=“type” Slug – gives server a URI hint for the created resource

LDP Resource: DELETE “Delete this resource” Use If-Match: to make delete conditional (compare to ETag:) Etag = entity tag DELETE /stuff/photo HTTP/1.1 HTTP/1.1 204 No Content example.org

status code 412 (Condition Failed) LDP Resource: DELETE DELETE /stuff/photo HTTP/1.1 Host: example.org If-Match: W/”12345678” HTTP/1.1 204 No Content status code 412 (Condition Failed) Given by server if ETags fail to match Slug – gives server a URI hint for the created resource

LDP Basic Container: POST sub-container “Create a sub-container in the container” Hint for IRI of created container in Slug: header POST /stuff/ HTTP/1.1 Content-Type: text/turtle <content> HTTP/1.1 201 Created Location: <resource IRI> example.org

LDP Basic Container: POST sub-container POST /stuff/ HTTP/1.1 Host: example.org Slug: gallery Link: <http://www.w3.org/ns/ldp/BasicContainer>; rel=“type” Content-Type: text/turtle @prefix dcterms: <http://purl.org/dc/terms/>. @prefix ldp: <http://www.w3.org/ns/ldp#>. <> a ldp:BasicContainer; dcterms:title ”My Gallery”. HTTP/1.1 201 Created Location: http://example.org/stuff/gallery/ Content-Length: 0 Slug – gives server a URI hint for the created resource

Direct Containers

LDP Direct Containers Resource Container Resources ldp:membershipResource ldp:contains ont:hasPhoto ldp:contains ont:hasPhoto

LDP Direct Container: GET “What’s in this container?” RDF representation: Uses custom property as well as ldp:contains GET /stuff/gallery/ HTTP/1.1 Accept: text/turtle HTTP/1.1 200 OK Content-Type: text/turtle <RDF representation of container> example.org

LDP Direct Container: GET HTTP/1.1 200 OK Content-Type: text/turtle Allow: POST,GET,OPTIONS,HEAD,PUT Link: <http://www.w3.org/ns/ldp#DirectContainer>; rel="type” @prefix dcterms: <http://purl.org/dc/terms/> . @prefix ldp: <http://www.w3.org/ns/ldp#> . @prefix ont: <http://example.org/gallery#> . <http://example.org/stuff/gallery/> a ldp:DirectContainer; ldp:membershipResource <#pics>; ldp:hasMemberRelation ont:hasPhoto; ldp:contains <photo1>, <photo2> . <#pics> a ont:Gallery; dcterms:title “Photo Gallery”; ont:hasPhoto <photo1>, <photo2> .

Indirect Containers

LDP Indirect Container: GET GET /staff/nmg HTTP/1.1 Host: example.org HTTP/1.1 200 OK Link: <http://www.w3.org/ns/ldp#DirectContainer>; rel="type” @prefix ldp: <http://www.w3.org/ns/ldp#>. @prefix dcterms: <http://purl.org/dc/terms/>. @prefix o: <http://example.org/ontology#>. <http://example.org/staff/nmg/> a o:Academic; o:student <students/alice#me>, <students/bob#me>. <students/> a ldp:IndirectContainer; dcterms:title "The students of Nick Gibbins"; ldp:membershipResource <>; ldp:hasMemberRelation o:student; ldp:insertedContentRelation foaf:primaryTopic; ldp:contains <students/alice>, <students/bob>.

LDP Indirect Container: POST POST /staff/nmg/students/ HTTP/1.1 Host: example.org Accept: text/turtle Content-Type: text/turtle Slug: eve Content-Length: 72 @prefix foaf: <http://xmlns.com/foaf/0.1/> . @prefix o: <http://example.org/ontology#> . <> a o:Student; foaf:primaryTopic <#me>; foaf:name “Eve” .

LDP Indirect Container: GET HTTP/1.1 200 OK Content-Type: text/turtle Link: <http://www.w3.org/ns/ldp#DirectContainer>; rel="type” @prefix ldp: <http://www.w3.org/ns/ldp#>. @prefix dcterms: <http://purl.org/dc/terms/>. @prefix foaf: <http://xmlns.com/foaf/0.1/>. @prefix o: <http://example.org/ontology#>. <http://example.org/staff/nmg/> a o:Academic; o:student <students/alice#me>, <students/bob#me> <students/eve#me> . <students/> a ldp:IndirectContainer; dcterms:title "The students of Nick Gibbins"; ldp:membershipResource <>; ldp:hasMemberRelation o:student; ldp:insertedContentRelation foaf:primaryTopic; ldp:contains <students/bob>, <students/marsha>, <students/eve> .

LDP versus SPARQL

LDP versus SPARQL GSP (Graph Store Http Protocol) Significant overlap between specifications: GSP deals with Named Graphs LDP deals with LDP Resources and LDP Containers Implementation-agnostic! Conflicts involve treatment of POST and PUT when the same IRI is used to identify an LDP Resource and a GSP endpoint GSP ignores the semantics of triples in graphs GSP, as its name implies, can be seen as a HTTP protocol definition on how to interact with a quad (graph) store. The model, as seen as from HTTP clients, can be that HTTP resources are equal to a graph. This is useful for HTTP clients that know they are working with graph stores. These graphs group triples under one URI, but do not imply any extra functionality. In LDP, this is not the case. LDP looks to abstract away the server storage model and focus on the protocol for the lifecycle of HTTP resources and relationships (links and containers). LDP could be implemented with a graph store underneath. LDP specific semantics, confined in the RDF, imply certain server behaviour. An important example is an LDP ‘collection’. This distinction is discussed later on.

Reflection on Data Publishing

Comparing Linked Data Publishing Strategies Publisher / Server Consumer / Client Easy Tasks Hard Tasks RDF Files Few servings of large size Many servings of small size; Complex selection (impossible); Too many large downloads breaks server Receiving few large servings Receiving many small updates; Manipulation impossible http deref Many servings of small size Large servings or many derefs Getting informed about few resources Large data requires too many http requests (e.g. catalogue) GSP, as its name implies, can be seen as a HTTP protocol definition on how to interact with a quad (graph) store. The model, as seen as from HTTP clients, can be that HTTP resources are equal to a graph. This is useful for HTTP clients that know they are working with graph stores. These graphs group triples under one URI, but do not imply any extra functionality. In LDP, this is not the case. LDP looks to abstract away the server storage model and focus on the protocol for the lifecycle of HTTP resources and relationships (links and containers). LDP could be implemented with a graph store underneath. LDP specific semantics, confined in the RDF, imply certain server behaviour. An important example is an LDP ‘collection’. This distinction is discussed later on.

Comparing Linked Data Publishing Strategies Publisher / Server Consumer / Client Easy Tasks Hard Tasks SPARQL GSP Many servings of small size; complex select Large servings or many complex selects break server Almost everything is easy for the client Web awareness not sufficient, needs SPARQL awareness LDP Servings of small and large sizes Selects of medium or higher complexity impossible Web awareness sufficient; Linked Data Fragments Servings of small and large sizes; medium complexity selects Complex selects are impossible Medium complexity selects Own processing needed on top GSP, as its name implies, can be seen as a HTTP protocol definition on how to interact with a quad (graph) store. The model, as seen as from HTTP clients, can be that HTTP resources are equal to a graph. This is useful for HTTP clients that know they are working with graph stores. These graphs group triples under one URI, but do not imply any extra functionality. In LDP, this is not the case. LDP looks to abstract away the server storage model and focus on the protocol for the lifecycle of HTTP resources and relationships (links and containers). LDP could be implemented with a graph store underneath. LDP specific semantics, confined in the RDF, imply certain server behaviour. An important example is an LDP ‘collection’. This distinction is discussed later on.

Planning for Data Publishing Who serves data? Checks: Size of data Available processing power Unlimited SPARQL endpoint will break Available bandwidth Who consumes data? Checks: Frequency of queries/updates Efforts required for client processing Numbers of requests to be issued Response times More (RDF) data out there then can be served (until now).