Hi Matt, The correct namespace for RDFS is http://www.w3.org/2000/01/rdf-schema# as used in com.hp.hpl.jena.vocabulary.RDFS. You don't want to change that. I'm...
Yes, rdf:parseType="daml:collection", it's the first hit on a google search of "daml collection". However, you would be better off using the rdf version where...
... Are you sure the error is coming from that line? ... I don't think there is an error. Giving the new restriction a null URI causes it to be created as a...
Hi Chris, ... That does sound reasonable. It sounds like it would be worth an initial experiment with Postgresql since the fetch size is the easiest to...
Hi, I use Jena2.1. but i don't understand "...the remove is actually implemented as a rebind step". If I remove directly on the InferedModel, nothing happen. ...
... In the initial Jena2 release "remove" was imlemented as an incremental operation. There was a hard to fix bug in there which was patched around by changing...
Thanks Dave. Sorry I put up that on the mailing list too early. The error was coming from that line, but was not associated with "null" assigned to URI. ... ...
Sujatha Upadhyaya
sujathaupadhyaya@...
Jun 1, 2004 12:12 pm
8262
I have met a problem, when I use the following methods to create instance and set the value of intance, the execution process cost a lot time (about 20 seconds...
This seems to load only the underlying OWL rules, but what I need to do is to load a new set of "rules" as described by an OWL document which I have written....
(no author)
(no email address)
Jun 1, 2004 1:10 pm
8264
Sorry - missed out the subject This seems to load only the underlying OWL rules, but what I need to do is to load a new set of "rules" as described by an OWL...
(no author)
(no email address)
Jun 1, 2004 1:15 pm
8265
Giles, ... That's what the "append that List to the list of your own rules" bit was for. See my message to Bradley for a more detailed example. Dave...
Hi all Thanks to the JENA group members for helping me with my questions till now. Here I am about to request help in my next roadblock I am facing. I wanted...
... The query speed through Jena won't be as good as through a relational database because Jena's relational back-end uses Fastpath. That allows query...
Andrew Newman
andrew@...
Jun 2, 2004 4:17 am
8269
The SIMILE group are also looking at storage issues for their work: Some early material is at: http://simile.mit.edu/wiki/DatasetScalabilityReport Their report...
How can I create a RDFList, after declaring a variable for it? I have to pick up some classes periodically and build this list. for building a union class...
Sujatha Upadhyaya
sujathaupadhyaya@...
Jun 2, 2004 8:30 am
8271
... Andrew, Why does fastpath cause things to be slower than a relational DB? There will be some translation overhead comparing Jena with a purely relational ...
... If you can use libraries with applets, you can use Jena with applets. If not, not. But remember that the applet will have to download all the libraries it...
... Using the methods of RDFList? ... If you tell us what you've tried, then it will be easier for us to see what didn't work. As a Lispy/Popy kind of person,...
... Well, without knowing more about the model and context, it's hard to be helpful. What kind of OntModel was it? Database or in-memory? Inference or not? How...
The bug is in using %20 in the URL in the first place. Just don't do it. While it is permitted, and the quote seems to suggest that Jena functions correctly...
Thank you Chris I tried building the RDFList, wrote some code as below if (flag1) { classList=m.createList(); classList.cons((RDFNode) ocl2); flag1 = false; } ...
Sujatha Upadhyaya
sujathaupadhyaya@...
Jun 2, 2004 8:42 pm
8279
... That's what I was trying to say. It was probably just a poor turn of phrase. The query speed of Jena backed with Kowari is currently slower than a Jena...
Andrew Newman
andrew@...
Jun 2, 2004 8:43 pm
8280
Sujatha Upadhyaya <sujathaupadhyaya@...> wrote:Thank you Chris, I tried building the RDFList, wrote some code as below if (flag1) { ...
Sujatha Upadhyaya
sujathaupadhyaya@...
Jun 3, 2004 4:17 am
8281
... Heavens, no. Why mess around with a boolean? Initialise `classList` to the empty list before the loop begins. ... *read the javadoc*. I cannot stress this...
... Correct. And we are going to try several triple-stores thru the Jena API (and eventually others). We will try to use all the triple-stores that we can find...
Hi list, Quick intro: I'm Steve Harris, just joining the list, but I've browsed it on the web before. I'm the lead developer of 3store, a GPL'd RDFS...