Tagged Questions
0
votes
1answer
13 views
Getting datatype error with Sesame 2.7.1 from DBpedia resources
I'm trying to add to Sesame 2.7.1 the URI "http://dbpedia.org/resource/Brazil" from DBPedia resources. But Sesame 2.7.1 stops with the following error:
'1000000000000' is not a valid value for ...
1
vote
1answer
28 views
ParserConfig error in Sesame 2.7 when trying to upload RDF files from DBpedia
I am trying to upload into my Sesame repository a set of RDF file coming from DBpedia. The problem is: for almost every RDF file, Sesame give the following error:
'whatever_file_is': 'some_value' was ...
0
votes
1answer
38 views
Sparql Select Query works on Sesame-Workbench but not on Java
I'm trying to create a Sparql-Query to get all messages, that are related to a lecture. I'm new at the whole 'semantic web'-story so be patient if the usage namespace is completely wrong.
The query I ...
0
votes
1answer
52 views
Building AliBaba java exemple
Good evening,
I am new to Java Persistence API and I would like to test AliBaba to see what it could do.
AliBaba website. I read part of the exemple given here. I have the whole AliBaba project and ...
2
votes
1answer
30 views
Sesame 2.7 failed to recognise RDF Literal
I'm having some trouble with Sesame 2.7. Suppose I have the following RDF document:
<rdf:RDF xmlns:arq="http://example.com/vocab.rdf#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
...
-1
votes
0answers
21 views
Protege owl Ontology to RDF Sesame 2 Windows Client
I've created a Disease Ontology in Owl, complete with object properties. I'm looking for a way to create a database with that owl model along with a simple interface where we can add more information ...
0
votes
1answer
28 views
Unable to upload webdatacommons example file into OpenRDF Sesame 2.7.0 (seemingly) because of encoded Chinese characters
I just tried uploading the example webdatacommons RDF file
Into Sesame 2.7.0 and get a message:
"'洪雄熊' was not recognised as a language literal, and could not be verified, with language zh_tw ...
0
votes
0answers
84 views
sesame/jetty server responding wrong content-type for a node.js http get request
var http = require('http')
function getSPARQLResults(query_string, callback) {
sparqlQ = getSPARQLPrefix() + query_string;
var options = {
host: 'localhost',
port: 8080,
path: ...
1
vote
0answers
148 views
How to draw a graph in java rdf using openRDF [closed]
I have a project thats needs to graph (drawing) rdf file and xml files (succeed to show the elements they have in common).
I have to use OpenRDF and give free to my imagination to the graph.
Could ...
0
votes
0answers
99 views
NoClassDefFoundError for Jar library
I am using Sesame to access a sample RDF repository,
String sesameServer = "http://asimov.ludat.lth.se/openrdf-sesame/";
String repositoryID = "KnowRob";
// Cannot create HTTPRepository
Repository ...
1
vote
1answer
78 views
sesame rdfstore named graphs
I am using sesame HTTP api with its in-memory rdf store.
I load data/triples in a context/named graph
I query using named graph/context
I have 2 questions:
In the same repository, can a graph ...
0
votes
1answer
60 views
cannot load correct amount of triples when connecting to open rdf sesame using Topbraid Composer Maestro Edition
I have been struggling to make this work.
In our open rdf sesame environment, we have our sesame repository that has over 200000 triples (we use n3 files to develop these triples btw).
I used ...
1
vote
0answers
66 views
Improve Performance INSERT/UPDATE OWLIM-Lite
I have a problem with performances especially in INSERT and DELETE/INSERT query sparql.
I have implemented an ontological model with the following characteristics:
OWL Profile = OWL 2 QL
DL ...
2
votes
1answer
79 views
Sparql - owlim query does not work after update
I've created application, which works with openrdf sesame and owlim module. Recently, I needed to update licence key to owlim (I recieved key for newest owlim version), so I was forced to update ...
2
votes
1answer
113 views
Sparql - delete queries stop working after update
I've created an application, which works with openrdf sesame and owlim module. Recently, I needed to update licence key to owlim (I received a key for the newest owlim version), so I was forced to ...
2
votes
1answer
127 views
OpenSesame on Android to store RDF Triples
I'm trying to use OpenSesame on android. Therefore i included the opensesame-onejar in my project.
When running the project, a exception is thrown: java.lang.NoClassDefFoundError: ...
1
vote
1answer
249 views
Manipulation of sesame server repositories (owl ontology) in java servlet
I'm trying to connect a web application (eclipse) with my Sesame repository server (sesame 2.6.3) both of them are running in my local machine under the same Apache Tomcat 6.0.29. I found the sesame ...
1
vote
1answer
360 views
OpenRDF Sesame: can't define prefix
I am trying to build correct query for my test server, and i am faced the problem that i'm not able to define PREFIX.
For instance, this query works:
select * where
{
?stayingURL ...
3
votes
1answer
736 views
OpenRDF Sesame - 404 error
I have OpenRDF Sesame in my webapps folder under my Apache Tomcat installation. I can access the /openrdf-workbench webapp, but /openrdf-sesame gives me a 404 error.
Literally all it says is:
HTTP ...
3
votes
2answers
145 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 ...
0
votes
1answer
325 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 ...
3
votes
1answer
124 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";
...
2
votes
1answer
324 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 ( ...
4
votes
2answers
2k views
Update RDF in Triplestore
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
1answer
131 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. ...
1
vote
1answer
679 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
944 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 ...
0
votes
2answers
219 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#"
...
2
votes
5answers
1k views
2
votes
1answer
110 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 ...
7
votes
3answers
2k 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.