Tagged Questions
an open-source Java framework for storing, querying and inferencing for RDF. It can be deployed as a web server or used as a Java library. Features include several query languages (SeRQL and SPARQL), inferencing support, and RAM, disk, or RDBMS storage.
6
votes
3answers
1k views
RDF storage
Has someone experiment RDF storage solution like sesame ? I'm looking for performance review of this kind of solution compared to the traditional database solution.
3
votes
2answers
40 views
Is it possible to combine those 2 SPARQL update queries into one?
I want to perform an update to remove the link (predicate) between two nodes in my RDF Store. The link is bidirectional (skos:narrower, and skos:broader). I would like to make a unique query, to ...
3
votes
1answer
41 views
RDF--How do I make a transitive property shift, based on the rdf:type?
I'm trying to find a way to infer/propogate a property based on types to prevent name collision:
:AOrder :Store :AStore ;
a :OrderType ;
:user :AUser .
:AStore :name "Store Name";
...
3
votes
2answers
280 views
Update RDF in Tripelstore
I'm experimenting with Sesame and Virtuoso Triplestores. At the Moment I use the Sesame Java API to add RDF Data to both Triplestores.
My RDF Data represents different things like Videodata, Userdata ...
3
votes
2answers
232 views
Sesame SeRQL does not provide update/insert option?
I'm trying to use Sesame repository to store my ontology. I wanted to write JAVA code to load this ontology or just run queries on it so as to add new individuals, properties etc. But it seems that ...
2
votes
1answer
63 views
OpenRDF TurtleParser not handling prefixes properly
Wordnet 3.0 ( http://semanticweb.cs.vu.nl/lod/wn30/ ) is in Turtle format, and I am having trouble getting org.openrdf.rio.turtle.TurtleParser to parse the Manifest.ttl file ( ...
2
votes
1answer
79 views
Loading Notation3 into a Database
How do you parse and load the triples represented by a Notation3 file into a database? I'm somewhat familiar with Jena and Sesame, but these seemed geared to process RDF or Turtle, not full Notation3. ...
2
votes
0answers
64 views
Where can I find a tutorial how to build a SAIL for sesame2 store?
I would like to implement a SAIL (for sesame2) that lets me to store triples in hsqldb. I have found basic documentation on the sesame website about: Sail API, Sail Query API, Repository API, but I ...
2
votes
1answer
116 views
Adding statement in Sesame using HTTPRepository
I'm trying to add some simple statements to a Sesame repository, like so:
RepositoryConnection connection = repository.connection
connection.autoCommit = false
try {
ValueFactory ...
1
vote
1answer
23 views
Configuring Sesame with Allegrograph
How can I configure Sesame with Allegrograph? I know agraph provides similar API's ti Sesame's ones. However, I'd like to use Alibaba.
Thanks
1
vote
1answer
56 views
openrdf-sesame SPARQLResultsXMLWriter and XSL
how can i add xsl stylesheet in XML out stream provided by SPARQLResultsXMLWriter?
RepositoryConnection con = repository.getConnection();
SPARQLResultsXMLWriter sparqlWriter = new ...
1
vote
0answers
69 views
How can I integrate a symantic reasoner into Sesame?
I'm working on the API for TripleStore in Sesame. It has a reasoner which works with RDFs.
As I also work with OWL. So I want to add another symantic reasoner such as Pellet or ITM ...
It appears ...
1
vote
0answers
202 views
Python: Using RDFLIB to graph a Sesame database
Is it possible to draw a graph of a Sesame RDF database using RDFLIB?
This is what I tried:
endpoint = ...
1
vote
2answers
263 views
What should I included (using maven) to have use an embedded sesame repository in my Java application
I would like to use an embedded openRDF sesame repository in my Java application. I can not find information what is a minimum set of libraries that I need to include -- place in my pom.xml -- in my ...
1
vote
1answer
332 views
How to set up a password for openrdf workbench?
I have successfully installed Openrdf Repository (sesame 2.3.2) and Openrdf workbench however I do not know how to set up a user and a password to protect Openrdf workbench. I suppose that there is ...
1
vote
2answers
521 views
Loading verly large RDF file into openrdf Sesame ontology manager
I need to load very large ontology represented as N-triples file(1gb) to the openrdf Sesame application. I'm using the workbench interface to do that. I know that this file is too big to be loaded in ...
1
vote
1answer
260 views
Using Sesame 2 and MySQL in my Java Class
It's my first time with Sesame 2 so please be kind. It could be a stupid question but I can't find documentation about how to use Sesame 2 and a mysql store.
I've created one using the create mysql.
...
1
vote
4answers
835 views
1
vote
1answer
90 views
How can I uses Sesame's RDFXMLParser in JRuby?
I am not very experienced in Java and JRuby but need to parse RDF data using Sesame's RDFXMLParser in JRuby and my python-minded brain just does not want to get into it. I have problems translating ...
0
votes
1answer
47 views
How to increase heap size for sesame store from the cmd permanently?
Could some one please advise me on:
(a) How to identify the current heapsize.
(b) how to increase the heapsize.
Unfortunately the current topics seems to be very vague to me.
0
votes
1answer
72 views
how to use sparql query in JSP for rdf over MySql database
Context:
I have deployed Sesame workbench server in "Glass fish server" (netbeans) and uploaded my ontology in "MySql RDF store".
Now I can see some tables created in my MySql database (connected to ...
0
votes
1answer
61 views
Sparql query behaving unexpectedly in Sesame 2.6.0
I'm trying to perform some Sparql queries on my local ontology repository using Sesame 2.6.0 and I'm facing one that is not working as I expected.
The intention of making this query is to *obtain ...
0
votes
1answer
130 views
cant access http://localhost:8080/openrdf-workbench
I am using sesame 2.5.0 and a newbie in using these triplestores. I had a problem that whenever I try to access http://localhost:8080/openrdf-workbench using Google Chrome explorer it redirects to ...
0
votes
0answers
60 views
Tomcat Encoding Problem
I have a web app that when I execute with Jetty, all work fine, when I use Tomcat, the encoding fail.
I have:
PostgreSQL using UTF-8 and
Sesame using UTF-8
My server.xml has the following lines:
...
0
votes
0answers
844 views
Maven compile failure, package does not exist
I'm attempting to build a java maven project, https://launchpad.net/networkedgraphs but I get a error that a package does not exist. There is a note about compiling on their site: ...
0
votes
1answer
71 views
Doesn't understand SERQL queries
i set up a Sesame (openrdf.org) server and try to access it by the Java API.
For test purpose I have used a really simple example from Wikipedia:
<?xml version="1.0" encoding="UTF-8" ?>
...
0
votes
2answers
165 views
RDF avoiding rdfs:subClassOf
I have the following RDF:
<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
...
0
votes
1answer
180 views
Insert data to Sesame Database using SQL queries
I would like to know whether is possible to add normal data to a Sesame Database using SQL queries and retrieve them through SQL queries..??
Thank you
Regards,
Chith