Search the web
Sign In
New User? Sign Up
jena-dev · Jena Developers
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 6164 - 6193 of 35874   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
6164
Hi, im looking to retrieve strings individually from an rdf file, so far ive only found a way to get all strings of a certain name from the rdf file: if...
Sean
paulcarty100
Offline Send Email
Feb 1, 2004
10:04 am
6165
Look at the Model.listStatements interface or, if you more complex queries, look at RDQL (there is a tutorial). For example: model.listStatements(null,...
Dave Reynolds
derihy
Offline Send Email
Feb 2, 2004
8:08 am
6166
Hi All, I am a very new beginner in Jena and now want to get datatype property values of individuals of some class stored in OWL file. The following is my code...
xiaolinxiao81
Offline Send Email
Feb 2, 2004
8:33 am
6167
... [It's not files you're working on: it's Models. A Model need not correspond to a file. We supply memory-backed and RDB-backed Models in the Jena delivery.]...
Chris Dollin
flitz_cloud
Offline Send Email
Feb 2, 2004
8:36 am
6168
I've now added a "fix" in CVS to stop these anonymous prototypical instances appearing in the model outputs. It's a "fix" rather than a fix because it just...
Dave Reynolds
derihy
Offline Send Email
Feb 2, 2004
8:44 am
6169
Hello, Let me present you something that you don't use to talk about : the ET presence. THOUSANDS OF WITNESSES CONFIRM THEIR EXISTENCE. It is so important for...
johndeere
lejohndeere
Offline Send Email
Feb 2, 2004
9:22 am
6170
... This isn't ideal because it would not be able to handle typed literals and is assuming that all values of all properties are floats. ... Are you sure it...
Dave Reynolds
derihy
Offline Send Email
Feb 2, 2004
10:47 am
6171
... This is getting the namespace part of the URI which is used to specify OntDocumentManager configurations. It has nothing to do with the URI's used in your...
Dave Reynolds
derihy
Offline Send Email
Feb 2, 2004
10:55 am
6172
simonwhite_zepler_net wrote: [deletions] ... I believe you've fallen over a bug that's been fixed in later version of Jena (it really, really helps if you tell...
Chris Dollin
flitz_cloud
Offline Send Email
Feb 2, 2004
11:09 am
6173
Hello, I have problem with importing owl ontologies using a stream. When reading an ontology from a file then is all works. Ontology ont1 imports ontologie...
therealknowuse
Offline Send Email
Feb 2, 2004
11:12 am
6174
One experiment you might try would be to explicitly set the base URI for the stream. So that intead of: ontModel.read(is, null); use ontModel.read(is,...
Dave Reynolds
derihy
Offline Send Email
Feb 2, 2004
11:23 am
6175
... address ... RE: I have an rdf file: <rdf:Description rdf:about="http://somewhere/BookBuy/"> <vCard:FN>BookBuy_Web_Service</vCard:FN> <vCard:N...
Sean
paulcarty100
Offline Send Email
Feb 2, 2004
11:59 am
6176
Sean wrote: [he has an RDF file] ... That depends on what you're trying to do - which you still haven't told us. "get" is a very non-specific verb. IF you have...
Chris Dollin
flitz_cloud
Offline Send Email
Feb 2, 2004
1:28 pm
6177
Ian, Thanks for fixing that bug so quickly. You should make the same repair to writeOntIndividuals too. -Dave ... [omitted description of bug in schemagen]...
Dave Rager
dragerbbn
Offline Send Email
Feb 2, 2004
2:55 pm
6178
Thanks for that. Ian is indisposed at the moment so I've made those changes in CVS and Ian can check he's happy with the changes when he's back. Dave...
Dave Reynolds
derihy
Offline Send Email
Feb 2, 2004
3:22 pm
6179
Hello, No that doesn't solve it. The error is the following: JenaException while reading model from ontology/ont2.owl, with message: rethrew: no protocol:...
therealknowuse
Offline Send Email
Feb 2, 2004
5:29 pm
6180
What is the preferred way to attach code to postings on this list? I posted a small Java class inline the other day from the web form on yahoo groups (I didn't...
Gary Schiltz
gary_schiltz
Offline Send Email
Feb 2, 2004
5:45 pm
6181
... Yup. That's certainly not a legal URL. Now you just have to look at the bit of the stack trace you didn't include and work out where that purported URL is...
Dave Reynolds
derihy
Offline Send Email
Feb 2, 2004
5:48 pm
6182
Ok. I have done it, but..it still does not work. I was debugging my code and I realised that I used this sentences to get the classes of an ontology: ...
dfl_maradentro
Online Now Send Email
Feb 2, 2004
8:07 pm
6183
... Thanks for your help. I created a model with a Java program, and now queries are working. Now I just have to figure out how to do inserts and deletes,...
Jacob Page
apocko
Offline Send Email
Feb 2, 2004
11:56 pm
6184
When I save an ontology with imports (e.g. the wine ontology from http://www.w3.org/TR/owl-guide/wine.rdf) as RDF/XML (without abbrev), and then try to reload...
holger_knublauch
holger_knubl...
Offline Send Email
Feb 2, 2004
11:57 pm
6185
Kevin, Thanks for the reply, but what you suggested didn't seem to have any effect. However, what I DID get to work is the following: ModelMaker dbModelMaker =...
Gary Schiltz
gary_schiltz
Offline Send Email
Feb 3, 2004
12:39 am
6186
Hi Dave, Thank you very much for your reply. And I still want to know more about my first question, do you know is there any better way to do get the datatype...
xiaolinxiao81
Offline Send Email
Feb 3, 2004
3:56 am
6187
Hi Holger, Does the same code work with ABBREV? Is there a specific reason to use non-abbrev? Is it possible to post a short code sample showing how the...
Dave Reynolds
derihy
Offline Send Email
Feb 3, 2004
9:30 am
6188
... It sounds like you have relative URI references in your file and the base URI is not being set correctly at read time. Is this the imported Ontology or the...
Dave Reynolds
derihy
Offline Send Email
Feb 3, 2004
9:38 am
6189
... In that case I'm confused. I thought that's what the rest of the message was answering - i.e. explicitly check that the object found is a Literal and then...
Dave Reynolds
derihy
Offline Send Email
Feb 3, 2004
9:57 am
6190
Hello, I want to make weighted relations in OWL but am not sure how to do this. A possible approach I am thinking on is <owl:Class rdf:id="topic"> </owl:Class>...
johan684
Offline Send Email
Feb 3, 2004
10:48 am
6191
Gary, We don't have a good solution for this - the web interface to the mailing lists does make a mess of code, although email'ed code is OK (of course, you ...
Seaborne, Andy
andyseaborne
Offline Send Email
Feb 3, 2004
12:38 pm
6192
... There are a few bugs in your XML syntax[1]. Fixing those then the way you have it set up the weight property gets attached the reification of ... a...
Dave Reynolds
derihy
Offline Send Email
Feb 3, 2004
4:27 pm
6193
(I reply again, cause I think my message has been lost) ... the ... Well, I read the model through the Uri the ontology is located in "file://C://Archivos de...
dfl_maradentro
Online Now Send Email
Feb 3, 2004
8:12 pm
Messages 6164 - 6193 of 35874   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help