You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by an...@apache.org on 2022/08/25 09:17:32 UTC

[jena-site] branch main updated: Fix doc about querying remote service (#114)

This is an automated email from the ASF dual-hosted git repository.

andy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/jena-site.git


The following commit(s) were added to refs/heads/main by this push:
     new ba0014c3c Fix doc about querying remote service (#114)
ba0014c3c is described below

commit ba0014c3cd5cc5ed9901406f7de670dbffbc2e3c
Author: Gubaer <ka...@guggis.ch>
AuthorDate: Thu Aug 25 11:17:26 2022 +0200

    Fix doc about querying remote service (#114)
---
 source/documentation/query/sparql-remote.md | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/source/documentation/query/sparql-remote.md b/source/documentation/query/sparql-remote.md
index 27da702a1..3ed5847ec 100644
--- a/source/documentation/query/sparql-remote.md
+++ b/source/documentation/query/sparql-remote.md
@@ -27,10 +27,13 @@ processed as usual.
 
 ## From the command line
 
-The [`arq.sparql` command](cmds.html#arq.sparql) can issue remote
+The [`arq.rsparql` command](cmds.html#arq.rsparql) can issue remote
 query requests using the `--service` argument:
 
-    java -cp ... arq.query --service 'http://host/service' 'SELECT ?s WHERE {?s [] []}'
+    java -cp ... arq.rsparql --service 'http://host/service' --query 'SELECT ?s WHERE {?s [] []}'
+    
+Or:
+    rsparql --service 'http://host/service' --query 'SELECT ?s WHERE {?s [] []}'
 
 This takes a URL that is the service location.