title: Apache Jena SPARQL APIs slug: index

Jump to “Changes”.

Overview

The SPARQL specifications provide query, update and the graph store protocol (GSP).

For working with RDF data:

APIGPI
ModelGraph
StatementTriple
ResourceNode
LiteralNode
StringVar
DatasetDatasetGraph
Quad

and for SPARQL,

APIGPI
RDFConnectionRDFLink
QueryExecutionQueryExec
UpdateExecutionUpdateExec
ResultSetRowSet
ModelStoreGSP

Jena provides a single interface, RDFConnection for working with local and remote RDF data using these protocols in a unified way. This is most useful for remote data because the setup to connect is more complicated and can be done once and reused.

HTTP authentication support is provided, supporting both basic and digest authentication in challenge-response scenarios. Most authentication setup is abstracted away from the particualr HTTP client library Jena is using.

Applications can also use the various execution engines through QueryExecution, UpdateExecution and ModelStore.

All the main implementations work at “Graph SPI” (GPI) level and an application may wish to work with this lower level interface that implements generalized RDF (i.e. a triple is any three nodes, including ones like variables, and subsystem extension nodes).

The GPI version is the main machinery working at the storage and network level, and the API version is an adapter to convert to the Model API and related classes.

UpdateProcessor is a legacy name for UpdateExecution

GSP provides the SPARQL Graph Store Protocol, including extensions for sending and receiving datasets, rather than individual graphs.

Both API and GPI provide builders for detailed setup, particularly for remote usage over HTTP and HTTPS where detailed control of the HTTP requests is sometimes necessary to work with other triple stores.

Factory style functions for many common usage patterns are retained in QueryExecutionFactory, UpdateExecutionFactory. Note that any methods that involved Apache HttpClient objects have been removed.

Changes from Jena 4.2.0 to Jena 4.3.0

  • Execution objects have a companion builder. This is especially important of HTTP as there many configuration options that may be needed. Local use is still covered by the existing QueryExecutionFactory as well as the new QueryExecutionBuilder.

  • HTTP usage provided by the JDK java.net.http package, with challenge-based authentication provided on top by Jena. See below.

  • Authentication support is uniformly applied to query, update, GSP and SERVICE.

  • HTTP/2 support

  • Remove Apache HttpClient usage

    • When using this for authentication, application code changes wil be necessary.
  • Deprecate modifying QueryExecution after it is built.

  • Parameterization for remote queries. Parameterization - replacing variables by values before sending a query - makes the query into a template. The same applies to updates. This is also provided uniformly for local queries and should be used in preference to the local-only “initial binding” approach which is similarly but not identical.

  • HttpOp, using java.net.http.HttpClient, is split into HttpRDF for GET/POST/PUT/DELETE of graphs and datasets and new HttpOp for packaged-up common patterns of HTTP usage.

  • The previous HttpOp is available as HttpOp1 and Apache HttpClient is still a dependency. Eventually, `HttpOp`` and dependecy on Apache HttpClient will be removed.

  • GSP - support for dataset operations as well as graphs (also supported by Fuseki).

  • DatasetAccessors removed - previously these were deprecated. GSP and ModelStore are the replacement for remote operations. RDFConnection and RDFLink provide APIs.

RDFConnection

RDFConnection

    try ( RDFConnection conn = RDFConnectionRemote.service(dataURL).build()) {
        conn.update("INSERT DATA{}");
        conn.queryAsk("ASK{}");
    }

or the less flexible:

    try ( RDFConnection conn = RDFConnectionFactory.connect(dataURL) ) {
        conn.update("INSERT DATA{}");
        conn.queryAsk("ASK{}");
    }

Query Execution

Factory Examples

  Dataset dataset = ...
  Query query = ...
  try ( QueryExecution qExec = QueryExecutionFactory.create(query, dataset) ) {
       ResultSet results = qExec.execSelect();
       ... use results ...
  }

Builder Examples Builders are reusable and modifiable after a “build” operation.

Dataset dataset = ...
Query query = ...
try ( QueryExecution qExec = QueryExecution.create()
                                 .dataset(dataset)
                                 .query(query)
                                 .build() ) {
    ResultSet results = qExec.execSelect();
    ... use results ...
}

and remote calls:

try ( QueryExecution qExec = QueryExecutionHTTP.service("http://....")
                                 .query(query)
                                 .build() ) {
    ResultSet results = qExec.execSelect();
    ... use results ...
}

More complex setup:

// JDK HttpClient
HttpClient httpClient = HttpClient.newBuilder()
                .connectTimeout(Duration.ofSeconds(10))  // Timeout to connect
                .followRedirects(Redirect.NORMAL)
                .build();
try ( QueryExecution qExec = QueryExecutionHTTP.create()
                                 .service("http:// ....")
                                 .httpClient(httpClient)
                                 .query(query)
                                 .sendMode(QuerySendMode.asPost)
                                 .timeout(30, TimeUnit.SECONDS) // Timeout of request
                                 .build() ) {
    ResultSet results = qExec.execSelect();
    ... use results ...
}

There is only one timeout setting for eacho HTTP query execution. The “time to connect” is handled by the JDK HttpClient. Timeouts for local execution are “time to first result” and “time to all results” as before.

ModelStore and GSP

   Model model = ModelStore.service("http://fuseki/dataset").defaultGraph().GET();
   Graph graph = GSP.service("http://fuseki/dataset").defaultGraph().GET();
  Graph graph = ... ; 
  GSP.request("http://fuseki/dataset").graphName("http;//data/myGraph").POST(graph);
  DatasetGraph dataset = GSP.request("http://fuseki/dataset").getDataset();

SERVICE

Old documentation - configuration, especially for authentication, has changed.

SERVICE configuration

See below for more on HTTP authentication with SERVICE.

The configuration of SERVICE operations has changed in Jena 4.3.0 and the paramter names have changed.

SymbolJava ConstantUsage
arq:httpServiceAllowedARQ.httpServiceAllowedFalse to disable
arq:serviceParamsARQ.serviceParamsMap
arq:httpQueryTimeoutARQ.httpQueryTimeoutRequest timeout (time to completion)
arq:httpQueryClientARQ.httpQueryCientAn java.net.http.HttpClient object
arq:httpQueryCompressionno-op

where arq: is prefix for <http://jena.apache.org/ARQ#>.

The timeout is now only for the overall request and manged by the HTTP client code.

Compression of responses is not currently supported.

Customization of HTTP requests

There is a mechanism to modify HTTP requests to specific endpoints or to a collection of endpoints with the same prefix.

For example, to add a header X-Tracker to each request to a particular server:

    AtomicLong counter = new AtomicLong(0);

    HttpRequestModifier modifier = (params, headers)->{
        long x = counter.incrementAndGet();
        headers.put("X-Tracker", "Call="+x);
    };
    // serverURL is the HTTP URL for the server or part of the server HTTP space.
    RegistryRequestModifier.get().addPrefix(serverURL, modifier);

The RegistryRequestModifier registry is checked on each HTTP operation. It maps URLs or prefix of URLs to a function of interface HttpRequestModifier which has access to the headers and the query string parameters of the request.

Authentication

For any use of users-password information, and especially HTTP basic authentication, information is visible in the HTTP headers. Using HTTPS is necessary to avoid snooping. Digest authentication is also stronger over HTTPS because it protects against man-in-the-middle attacks.

There are 5 variations:

  1. Basic authentication
  2. Challenge-Basic authentication
  3. Challenge-Digest authentication
  4. URL user (that is, user@host.net in the URL)
  5. URL user and password in the URL (that is, user:password@host.net in the URL)

Basic authentication occurs where the app provides the user and password information to the JDK HttpClient and that information is always used when sending HTTP requests with that HttpClient. It does not require an initial request-challenge-resend to initiate. This is provided natively by the java.net.http JDK code. See HttpClient.newBuilder().authenticate(...).

Challenge based authentication, for “basic” or “digest”, are provided by Jena. The challenge happens on the first contact with the remote endpoint and the server returns a 401 response with an HTTP header saying which style of authentication is required. There is a registry of users name and password for endpoints which is consulted and the appropriate Authorization: header is generated then the request resent. If no registration matches, the 401 is passed back to the application as an exception.

Because it is a challenge response to a request, the request must be sent twice, first to trigger the challenge and then again with the HTTP authentication information. To make this automatic, the first request must not be a streaming request (the stream is not repeatable). All HTTP request generated by Jena are repeatable.

The URL can contain a userinfo part, either the users@host form, or the user:password@host form. If just the user is given, the authentication environment is consulted for registered users-password information. If user and password is given, the details as given are used. This latter form is not recommended and should only be used if necessary because the password is in-clear in the SPARQL query.

JDK HttpClient.authenticator

    // Basic or Digest - determined when the challenge happens.
    AuthEnv.get().registerUsernamePassword(URI.create(dataURL), "user", "password");
    try ( QueryExecution qExec = QueryExecutionHTTP.service(dataURL)
            .endpoint(dataURL)
            .queryString("ASK{}")
            .build()) {
        qExec.execAsk();
    }

alternatively, the java platform provides basic authentication. This is not challenge based - any request sent using a HttpClient configured with an authenticator will include the authentication details. (Caution - including sending username/password to the wrong site!). Digest authentication must use AuthEnv.get().registerUsernamePassword.

    Authenticator authenticator = AuthLib.authenticator("user", "password");
    HttpClient httpClient = HttpClient.newBuilder()
            .authenticator(authenticator)
            .build();
    // Use with RDFConnection      
    try ( RDFConnection conn = RDFConnectionRemote.service(dataURL)
            .httpClient(httpClient)
            .build()) {
        conn.queryAsk("ASK{}");
    }
    try ( QueryExecution qExec = QueryExecutionHTTP.service(dataURL)
            .httpClient(httpClient)
            .endpoint(dataURL)
            .queryString("ASK{}")
            .build()) {
        qExec.execAsk();
    }

Challenge registration

AuthEnv maintains a registry of credentials and also a registry of which service URLs the credentials should be used. It supports registration of endpoint prefixes so that one registration will apply to all URLs starting with a common root.

The main function is AuthEnv.get().registerUsernamePassword.

   // Application setup code 
   AuthEnv.get().registerUsernamePassword("username", "password");
   ...
   try ( QueryExecution qExec = QueryExecutionHTTP.service(dataURL)
        .endpoint(dataURL)
        .queryString("ASK{}")
        .build()) {
       qExec.execAsk();
   }

When an HTTP 401 response with an WWW-Authenticate header is received, the Jena http handling code will will look for a suitable authentication registration (exact or longest prefix), and retry the request. If it succeeds, a modifier is installed so all subsequent request to the same endpoint will have the authentication header added and there is no challenge round-trip.

SERVICE

The same mechanism is used for the URL in a SPARQL SERVICE clause. If there is a 401 challenge, the registry is consulted and authetication applied.

In addition, if the SERVICE URL has a username as the userinfo (that is, https://users@some.host/...), that user name is used to look in the authentication registry.

If the userinfo is of the form “username:password” then the information as given in the URL is used.

    AuthEnv.get().registerUsernamePassword(URI.create("http://host/sparql"), "u", "p");
     // Registration applies to SERVICE.
    Query query = QueryFactory.create("SELECT * { SERVICE <http://host/sparql> { ?s ?p ?o } }");
    try ( QueryExecution qExec = QueryExecution.create().query(query).dataset(...).build() ) {
        System.out.println("Call using SERVICE...");
        ResultSet rs = qExec.execSelect();
        ResultSetFormatter.out(rs);
    }

Environment

AuthEnv - passwordRegistry , authModifiers RegistryHttpClient