I would like to send updates to the remote endpoint via http. I found that joseki is such an endpoint.
However, how can I send update requests to this endpoint if I only know the endpoint uri?
QueryExecution qe = QueryExecutionFactory.sparqlService(serviceURI, query);
qe.setInitialBinding(initialBinding);
result = qe.execSelect();
UpdateAction.parseExecute(updateQuery, dataset, initialBinding);
Dataset dataset = DatasetFactory.create(serviceURI);
Otherwise, I would like to hear how to make remote update requests to endpoints for which only URIs are known.
Update:
In the end, resorted to a local jena . This type of RDF endpoint accepts insert and delete instructions. I was unable to find a remote RDF endpoint that will accept modifying requests.
source
share