31/03/2014

Creer une requête distante avec Jena sur un serveur Fuseki

source : https://www.cambridgesemantics.com/fr/semantic-university/sparql-by-example, slide 50depuis le répertoire jena/bat
GET -H "Accept: text/turtle" http://dbpedia.org/sparql

une requete directement dans la zone requete de fuseki :
SELECT *
 WHERE { ?subject ?p ?object }
ou avec les namespace :
 PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX example: <http://example.org/ns#>
SELECT *
 WHERE { ?subject ?p ?object }
dans un navigateur : 
http://fuseki-smag0.rhcloud.com/ds/query?query=%0D%0ASELECT+*%0D%0A%09WHERE+%7B+%3Fsubject+%3Fp+%3Fobject+%7D&output=text&stylesheet=
sous DOS : 
GET -H "Accept: text/turtle" http://fuseki-smag0.rhcloud.com/ds/query?query=%0D%0ASELECT+*%0D%0A%09WHERE+%7B+%3Fsubject+%3Fp+%3Fobject+%7D

Aucun commentaire:

Enregistrer un commentaire