Skip to search.
jena-dev · Jena Users

Group Information

  • Members: 2056
  • Category: Software
  • Founded: Sep 19, 2001
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

  Messages Help
Advanced
Messages 1505 - 1534 of 48259   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1505 tarod@... Send Email Sep 2, 2002
8:23 am
I'm having a problem with anonymous resources, when you need the name of a anonymous resource, you can't call to getURI method because it returns a null, so...
1506 Dave Reynolds
derihy Offline Send Email
Sep 2, 2002
11:07 am
Hi, ... Odd. Is this with the cvs version of jena or with the distributed zip? A few weeks ago I did a couple of updates to the cvs to reduce the work of ...
1507 leevanh_74 Offline Send Email Sep 2, 2002
11:55 am
Is there an equivalent to the sql OR statement when using the constraint method of listing statements. for example: lets say a number of resources have a...
1508 centurion5de Offline Send Email Sep 2, 2002
12:05 pm
Sure you can. Type your code into a file and use the DAML+OIL Checker (http://potato.cs.man.ac.uk/oil/Checker). Thorsten...
1509 leevanh_74 Offline Send Email Sep 2, 2002
12:13 pm
Hi Dave, thanks for the reply. i have played around a little since i posted the message. After reading through some older posts, i found that the finalize ...
1510 Dickinson, Ian J
ian_j_dickinson Offline Send Email
Sep 2, 2002
12:22 pm
David - Sorry for the delay in responding, I've been out of the office for a while. Currently, what you're trying to do is not supported by the Jena DAML API. ...
1511 Dickinson, Ian J
ian_j_dickinson Offline Send Email
Sep 2, 2002
12:23 pm
Magdi - Without a user-specified restriction, the domain of a property is daml:Thing, of which all classes are, explicitly or implicitly, a sub-class. So yes,...
1512 Dickinson, Ian J
ian_j_dickinson Offline Send Email
Sep 2, 2002
12:23 pm
Shri - Providing they expand to the same URI, rdf:ID and rdf:about have the same meaning. At the time when the current outputters were developed, the practical...
1513 centurion5de Offline Send Email Sep 2, 2002
12:23 pm
... DAML is expressed in RDF. Therefore pure DAML+OIL is always RDF. Thorsten...
1514 Dickinson, Ian J
ian_j_dickinson Offline Send Email
Sep 2, 2002
12:23 pm
... That's a good question. DAML is a Darpa programme that had, at its inception, much broader goals than just an ontology language. However, I'm not sure...
1515 Seaborne, Andy
andyseaborne Offline Send Email
Sep 2, 2002
12:27 pm
... RDQL is a "pure" application of the Jena core API so it does not go faster (or, hopefully slower) than using a selector unless you do something special for...
1516 Dickinson, Ian J
ian_j_dickinson Offline Send Email
Sep 2, 2002
12:29 pm
... Your instance Hello is an instance of your ASubClass class, so given that it is correct. However, as I wrote wrote in an earlier message [1], although ...
1517 Dickinson, Ian J
ian_j_dickinson Offline Send Email
Sep 2, 2002
12:32 pm
Matthias - To reiterate what Jeremy said, there is no difference between RDF and DAML+OIL syntax. Jena writers output rdf:about in preference to rdf:ID, but ...
1518 Dickinson, Ian J
ian_j_dickinson Offline Send Email
Sep 2, 2002
12:49 pm
See replaceProperty() in DAMLCommon. Cheers, Ian...
1519 Dickinson, Ian J
ian_j_dickinson Offline Send Email
Sep 2, 2002
12:52 pm
for (Iterator i = myDamlModel.listDAMLClasses(); i.hasNext(); ) { DAMLClassExpression dc = (DAMLClassExpression) i.next(); if (dc instanceof DAMLRestriction)...
1520 Brian McBride
bwmb Offline Send Email
Sep 3, 2002
10:38 am
Hi Marc, You have certainly touched on some problems with Jena and with the RDF specs. The current simple RDF/XML writer does not maintain the anonymity of ...
1521 leevanh_74 Offline Send Email Sep 4, 2002
3:40 am
Thanks Andy, that's helped heaps. In regards to scale initially i would be looking at 1200+ xx type resources (as example below) with each having approx 8...
1522 leevanh_74 Offline Send Email Sep 5, 2002
10:25 am
Hi All, i am wondering if there is currently any means of sorting results from the query. With possibly big results returned it will not be feasible to read...
1523 Seaborne, Andy
andyseaborne Offline Send Email
Sep 5, 2002
1:57 pm
Lee, RDQL does not buffer the entire the result set - it streams it from the query engine to the application so if the application drops results as they are...
1524 Dave Reynolds
derihy Offline Send Email
Sep 5, 2002
2:05 pm
... This is not a supported feature at present. The original idea had been to either replace or augment the monster triple table with separate tables for...
1525 Brian McBride
bwmb Offline Send Email
Sep 5, 2002
5:31 pm
When Jena was first released it used an RDF parser developed by David Megginson called RDFFilter. This parser has not been the default for some time now, but...
1526 Danny Ayers
danny_ayers Offline Send Email
Sep 8, 2002
6:37 pm
... No problems anticipated here, but many thanks for asking. btw, is there a list anywhere of Jena's progress through wg decisions?...
1527 Brian McBride
bwmb Offline Send Email
Sep 9, 2002
7:40 am
... I don't think so, though there should be. Is there any feature in particular you are interested in? Brian...
1528 Konrad Hosemann
k_onz Offline Send Email
Sep 9, 2002
4:02 pm
Hi everyone, We want to use Jena for managing DAML+OIL and are currently thinking how we could make the model(s) persitent. To save the whole model to a file ...
1529 lszomb Offline Send Email Sep 10, 2002
10:00 am
I am having a problem when I use the "Filters" function in RDQL. This function works well when I filter a literal variable such as: SELECT ?resource WHERE...
1530 Seaborne, Andy
andyseaborne Offline Send Email
Sep 10, 2002
10:21 am
Hi there, The string equality operator is "EQ", the string inequality operator is "NE" and they do work on the string appearance of a URI. == is the numeric ...
1531 lszomb Offline Send Email Sep 10, 2002
10:46 am
Thank you very much, Andy. It works rightly now. I know "eq" operator from the Exception message of rdfquery and I try to use it in my query. But it failed...
1532 Seaborne, Andy
andyseaborne Offline Send Email
Sep 10, 2002
10:52 am
No problem. ... You can use && and || (and brackets) to write longer filters. You can also use multiple AND clauses (they are &&'ed together) Andy PS Remember...
1533 lszomb Offline Send Email Sep 10, 2002
11:00 am
Thank you for your help. I will try it. Best Regards, Liu Song ... in ... namespace ... try ... way. ... and...
1534 Danny Ayers
danny_ayers Offline Send Email
Sep 10, 2002
2:11 pm
... Nothing specific, just trying to keep my app reasonably in sync with the specs. I must admit I find it difficult to keep track of wg developments (no fault...
Messages 1505 - 1534 of 48259   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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