I ran into a known issue with Jena Fuseki 2.0 where the default timeout is too small on UI created datasets. See http://permalink.gmane.org/gmane.comp.apache.jena.user/6824. This issue is resolved under JENA-918.
I needed to get a build of Fuseki…
i am trying to connect to DBpedia to run a sparql query using apache jena. I am behind a proxy server, problem is i am getting a error with my code when connecting using apache jena but i can make a connection using direct url.
This code is…
According to the changelog, the Turtle RDF serialization has supported numeric local names since August 2011. In the following Jena code, the result of getLocalName() on the URI http://www.foo.com/123456 is not 123456. Is this a bug in…
Anybody did any implementation of Apache JENA on top of RDF models(using R2RML mapping) created from Virtual Databases in Data Virtualization layer. I am specifically looking for integration with JBOSS-Teiid, Apache JENA, R2RML mapping.
Any…
I have the following SPARQL query , please pay attention to the rowcount in the selection predicate and the group by clause at the end of the query.
I want the query to return the correct row count in every record , I noticed that the row count that…
I am learning Apache Jena. I am able to get Statements, Objects, Subject and graph.
i want to split the graph based on parent example: B and C are child of A and further more D is Child of B. Again in Same graph A1 if parent of B1,C1 and D1. So I…
I am using the Apache Jena Fuseki version 1.0, which provides ability to use SPARQL query to get the data in text, JSON and XML format. Whether Fuseki 1.0 supports RDF output format? If possible, please tell how to get output in RDF format from…
i have an issue querying Agrovoc Agrovoc Rabbits result in my java application. While am able to retrieve information about rabbits like concept. But when i try retrieving attribute information like concept label, broader, broader label I get their…
I have a .ttl file. I want to extract all distinct predicates from it. I am using Apache-jena. For this, I have used this SPARQL command:
"SELECT DISTINCT ?property WHERE {" +
" ?s ?property ?o ."
+ "}";
And I get a result,…
I'm trying to get movies in dbpedia that has subjects, directors and actors in common with a given movie. The search is made by a movie's name. Here is my final query:
SELECT (SUM(?quant) as ?final) ?movie {
{
SELECT distinct ?quant ?movie
…
I have an exercise in Semantic Web. I must extract some individuals from the DBpedia. These individuals must be inserted into an ontology that I must create. My question is. Can I retrieve individuals from the DBedia?
Let me clarify !
When I send…
I need some help removing an entry from my fuseki server
For example, how can I remove this entry?
"Test1" ;
This is what I've tried, but it's not working...
public void…
I have a command
./bin/arq --data ./bin/dbpedia_2015-10.nt --query ./bin/166.rq
which works perfect and I can see my result in my command line interface. I would like to use jena RIOT to have my result in the file.ttl . But as I am not familiar…
So I have this piece of code in Jena, that measures the execution time of a select query
Timer timer = new Timer();
timer.startTimer();
Query query = QueryFactory.create(queryString);
QueryExecution qexec =…