[
https://issues.apache.org/jira/browse/JENA-1513?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16417202#comment-16417202
]
ASF GitHub Bot commented on JENA-1513:
--------------------------------------
GitHub user afs opened a pull request:
https://github.com/apache/jena/pull/389
JENA-1513: Call initialization on ResultSet related paths
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/afs/jena resultset-init
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/jena/pull/389.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #389
----
----
> ResultSetLang.init() not called when necessary
> ----------------------------------------------
>
> Key: JENA-1513
> URL: https://issues.apache.org/jira/browse/JENA-1513
> Project: Apache Jena
> Issue Type: Bug
> Components: ARQ
> Affects Versions: Jena 3.6.0
> Reporter: Elie Roux
> Priority: Major
>
> This seems to be similar to
> [1264|https://issues.apache.org/jira/browse/JENA-1264]:
> When I execute:
> {code:java}
> public void testInit() {
> String sparqljson = "{\n" +
> " \"head\" : {\n" +
> " \"vars\" : [ \"work\" ]\n" +
> " },\n" +
> " \"results\" : {\n" +
> " \"bindings\" : [ ]\n" +
> " }\n" +
> "}";
> InputStream stream = new
> ByteArrayInputStream(sparqljson.getBytes(StandardCharsets.UTF_8));
> //ResultSetLang.init();
> ResultSet res = ResultSetMgr.read(stream,
> ResultSetLang.SPARQLResultSetJSON);
> }{code}
> I'm getting
> {code:java}
> org.apache.jena.riot.RiotException: No parser registered for content type:
> application/sparql-results+json
> at org.apache.jena.riot.ResultSetMgr.process(ResultSetMgr.java:89)
> at org.apache.jena.riot.ResultSetMgr.read(ResultSetMgr.java:52){code}
> while when I uncomment
> {code:java}
> ResultSetLang.init();{code}
> the error disappears.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)