SOH (SPARQL Over HTTP) is a set of command-line scripts for working with SPARQL 1.1. SOH is server-independent and will work with any compliant SPARQL 1.1 system offering HTTP access.
SOH is written in ruby.
Commands:
s-http
– SPARQL 1.1 HTTP Protocols-get
, s-put
, s-delete
, s-post
, s-head
– abbreviation for
s-http get ...
etc.s-query
– SPARQL 1.1 Query, both GET and POST of queries.s-update
– SPARQL 1.1 Updates-update-form
– SPARQL 1.1 Update using the HTML form and a
parameter of request=
.Each command supports the -v
flag to print out details of the
HTTP interaction.
The syntax of the commands is:
s-http VERB datasetURI graphName [file]
where graph name is a URI or the work default for the default graph.
s-get
, s-put
, s-delete
, s-post
are abbreviations for s-http get
,
s-http put
, s-http delete
and s-http post
respectively.
file
is needed for PUT and POST. The file name extension determines
the HTTP content type.
s-put http://localhost:3030/dataset default data.ttl s-get http://localhost:3030/dataset default s-put http://localhost:3030/dataset http://example/graph data.ttl s-get http://localhost:3030/dataset http://example/graph
s-query --service=endpointURL 'query string' s-query --service=endpointURL --query=queryFile.rq
s-update --service=endpointURL 'update string' s-update --service=endpointURL --update=updateFile.ru
SOH is a general purpose set of scripts that work with any SPARQL 1.1. server. Different servers offer different naming conventions for HTTP REST, query and update. This section provides summary information about using SOH with some servers. See the documentation for each server for authoritative information.
If you have details for other servers, get involved
If a Fuseki server is run with the command:
fuseki-server --mem /dataset
then the service endpoints are:
http://localhost:3030/dataset/data
http://localhost:3030/dataset/query
http://localhost:3030/dataset/update