Github user ajs6f commented on a diff in the pull request:

    https://github.com/apache/jena/pull/415#discussion_r186386296
  
    --- Diff: 
jena-arq/src/main/java/org/apache/jena/sparql/engine/http/QueryEngineHTTP.java 
---
    @@ -538,13 +539,29 @@ else if ( 
actualContentType.equals(WebContent.contentTypeJSON))
         @Override
         public JsonArray execJson()
         {
    -        throw new NotImplemented("JSON queries not implemented for remote 
calls") ;
    +        checkNotClosed();
    +        HttpQuery httpQuery = makeHttpQuery();
    +        httpQuery.setAccept(WebContent.contentTypeJSON);
    +        InputStream in = httpQuery.exec();
    +        JsonValue v = JSON.parseAny(in);
    +        if ( ! v.isArray() )
    +            throw new QueryExecException("Return from a JSON query isn't 
an array");
    +        return v.getAsArray();
         }
     
         @Override
         public Iterator<JsonObject> execJsonItems()
         {
    -        throw new NotImplemented("JSON queries not implemented for remote 
calls") ;
    +        // Non-streaming.
    +        // TODO Integrate with the JSON parser to stream the results. 
    +        JsonArray array = execJson().getAsArray();
    +        List<JsonObject> x = new ArrayList<>(array.size());
    +        array.forEach(elt->{
    +            if ( ! elt.isObject()) 
    +                throw new QueryExecException("Item in anarray from a JSON 
query isn't an object");
    --- End diff --
    
    Typo `anarray` => `an array`


---

Reply via email to