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...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 36831 - 36860 of 42023   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
36831
That's my understanding too. I recommend, as did Brian, that you use the OntModel interface, and just change the OntModel spec. Then you don't have to worry...
James Howison
jameshowison
Offline Send Email
Nov 1, 2008
5:16 pm
36832
Anyone know where the nomenclature "TBox" and "ABox" comes from? Did T and A stand for something? Why Box? I always explain this to people as "schema-like"...
James Howison
jameshowison
Offline Send Email
Nov 1, 2008
5:17 pm
36833
... Google "define:TBox" ==> http://en.wikipedia.org/wiki/Tbox (1 or 1) Google "define:ABox" ==> http://en.wikipedia.org/wiki/Abox (Second of 2) ... The...
Seaborne, Andy
andyseaborne
Offline Send Email
Nov 1, 2008
5:33 pm
36834
TBox stands for "terminology box," and ABox for "assertions box." In the description logic literature you'll also find RBoxes, or "role boxes," containing...
Brian J Lowe
bjl23cornell
Offline Send Email
Nov 1, 2008
5:34 pm
36835
... Deserved :) (but now I know about define:, I should update my google-fu) ... Great page. Ok, I even googled a little on the question of "why boxes?". My ...
James Howison
jameshowison
Offline Send Email
Nov 1, 2008
6:00 pm
36836
... I was surprised it worked. ... I don't know (which is why I skipped that part of the Q:) I've assumed it's "box" as in "container" which is mildly backup...
Seaborne, Andy
andyseaborne
Offline Send Email
Nov 1, 2008
6:35 pm
36837
I took a look in Baader et al's Description Logic Handbook to see if it had anything to say on the origin of "box," but came up empty. I've assumed it's a...
Brian J Lowe
bjl23cornell
Offline Send Email
Nov 1, 2008
6:52 pm
36838
Cool. I'm onboard with the box....
James Howison
jameshowison
Offline Send Email
Nov 1, 2008
11:25 pm
36839
Select your MBA Programs <http://www.thembadegreeonline.com/mbaprograms.htm> The courses are built and maintained on the eCollege platform, which provides for...
get_learnmba
Offline Send Email
Nov 2, 2008
12:56 pm
36840
Hi all, I think I have been making the mistake of researching how to and trying to create my semantic web application by jumping right into it head first...
Alex Genadinik
genadinik
Online Now Send Email
Nov 2, 2008
10:48 pm
36841
... I'd just tweak that by saying that here "come up with" really means find the right trade offs of performance and soundness. I'd work with Pellet until I...
James Howison
jameshowison
Offline Send Email
Nov 3, 2008
3:26 am
36842
... Hi, I apologise if you felt that I was hassling the volunteers. I am providing this brief example to explain what I am facing. //create model ...
kavitapravindeshpande
kavitapravin...
Offline Send Email
Nov 3, 2008
4:28 am
36843
Hi, How can I apply an inverse rule on a model object, without creating a new model object? Ie. I have a Singleton pattern that ensures that a web app...
Magnus Haraldsen Amun...
Magnus.Haraldsen.Amun...
Send Email
Nov 3, 2008
8:22 am
36844
... First, decide /what you want the application to do/. Everything else -- what tools to use, what ontology (if any) you need, how much reasoning you need --...
Chris Dollin
kers_ihy
Offline Send Email
Nov 3, 2008
8:46 am
36845
... Hi many thnks for your reply. You are right.You got my point what I want to do.I want to find the R for term T or rather I can find the T from a page if...
knobot777
Offline Send Email
Nov 3, 2008
9:05 am
36846
Hi, Does anyone now how to use count(*) in a SPARQL select statement in a Jena query? The parser doesnt like it. Also the commas are not liked in separating...
Marvin Lugair
aunmguy
Offline Send Email
Nov 3, 2008
9:33 am
36847
... Please be specific. Show us your actual query, the code you used to run it, and the parser message. ... Ditto. My /guess/ is that you're using the wrong...
Chris Dollin
kers_ihy
Offline Send Email
Nov 3, 2008
10:05 am
36848
... out there?  Two e-commerce ontologies that I'm aware of are: (a)eClassOWL (http://www.heppnetz.de/projects/eclassowl/) (b)GoodRelations...
paulsdoran
Offline Send Email
Nov 3, 2008
10:37 am
36849
Chris, Thanks for your reply... Here is an example query and the error message ****************************** SELECT distinct ?s1, ?s3, count(*) WHERE { ?s1...
Marvin Lugair
aunmguy
Offline Send Email
Nov 3, 2008
10:52 am
36850
... OK, I've just had a look at the SPARQL grammar: no commas. ... `count` is an ARQ extension, disabled by default. You need to tell Jena you're using ARQ...
Chris Dollin
kers_ihy
Offline Send Email
Nov 3, 2008
11:13 am
36851
What Chris said and I find that query pretty hard to read, so it's hard to figure out what you expect the count(*) to count. I think you might need a GROUP BY...
James Howison
jameshowison
Offline Send Email
Nov 3, 2008
6:02 pm
36852
bif:contains (a prefixed name, and not the URI <bif:contains>) is a Virtuoso specific feature. As discussed on the linking-open-data mailing list,...
Seaborne, Andy
andyseaborne
Offline Send Email
Nov 3, 2008
7:08 pm
36853
Hi, I am providing this brief example to explain the problem I am facing. //create model ontModel=ModelFactory.createOntologyModel ...
kavitapravindeshpande
kavitapravin...
Offline Send Email
Nov 5, 2008
3:31 am
36854
... So you could make that InfModel be *the* model for your singleton pattern (after all you can always get at the base model from the outer InfModel wrapper...
Dave Reynolds
derihy
Offline Send Email
Nov 5, 2008
6:50 am
36855
... That's not true. You have asserted that each of pets1 to pets4 *is* a pet because you created them as instances of the pets class. That means by virtue of...
Dave Reynolds
derihy
Offline Send Email
Nov 5, 2008
6:56 am
36856
Dear all, This is a summary of work so far by the FlyWeb Project team. We're exploring integration of life science data in support of Drosophila (fruit fly)...
Alistair Miles
alistair.miles
Offline Send Email
Nov 5, 2008
4:47 pm
36857
As the StatementHandler methods do not specify any exception, it is not possible to raise any checked exceptions. My question is, what happens if a runtime...
Juan Andres Velez
juan_andres_...
Offline Send Email
Nov 5, 2008
6:10 pm
36858
Where s is a jena Seq, s.size() is 2 s.getLiteral(1)) is value:b^^http://www.w3.org/2001/XMLSchema#string Then the next line: s.remove(1) throws a...
Taylor Cowan
taylor_cowan
Offline Send Email
Nov 5, 2008
9:36 pm
36859
Please disregard. It was an error on my side...jena is fine here. Taylor ________________________________ From: Taylor Cowan <taylor_cowan@...> To:...
Taylor Cowan
taylor_cowan
Offline Send Email
Nov 5, 2008
9:57 pm
36860
Hi, I have been using open-rdfto develope a project on, its been suggested that I should consider using Jena. Does anybody have any suggestions as to where I...
David Potts
davidpottsa
Offline Send Email
Nov 6, 2008
7:51 am
Messages 36831 - 36860 of 42023   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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