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 27341 - 27371 of 35874   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
27341
... Yes. ... It shows the /class hierarchy/ of the input, because that's what it's for (hence the name, DescribeClass). ... Yes: DescribeClass describes...
Chris Dollin
kers_ihy
Offline Send Email
Feb 1, 2007
8:00 am
27343
... SPARQL has FILTER for value constraints: SELECT * { ?x a myOnt:Car . ?x myOnt:price ?price . FILTER(?price < 10000) } or a little neater: SELECT * { ?x a...
Seaborne, Andy
andyseaborne
Offline Send Email
Feb 1, 2007
8:34 am
27344
... involves ... AIDIMA:productsInfo) ... or ... one. ... AIDIMA:productsInfo) ... like a ... I just found out something. This problem occurred on jena 2.5. I ...
pogomwg2000
Offline Send Email
Feb 1, 2007
9:12 am
27345
... There is no guarantee that a rule will only trigger once. If you are using makeTemp then it is generally a good idea to guard the rule by something like ...
Dave Reynolds
derihy
Offline Send Email
Feb 1, 2007
9:46 am
27346
... Now that is very odd. If you have a small test case in which isComplementClass on Person returns true with Pellet then it might be worth contacting the...
Dave Reynolds
derihy
Offline Send Email
Feb 1, 2007
9:50 am
27347
Dear all, I am new to websemantic, and did only try some examples using the jena api (and some Protege too). I also do read many useful posts here, but still...
fabiandev
Offline Send Email
Feb 1, 2007
9:57 am
27348
On Thursday 01 February 2007 09:57, fabiandev wrote: (Please don't post the same question twice. We are not a chatgroup and we can't necessarily respond...
Chris Dollin
kers_ihy
Offline Send Email
Feb 1, 2007
10:24 am
27349
... Could it be that the class descriptions are complex? Alternatively (or perhaps additionally), the inference engines suffer from a general flaw -- they use...
Chris Dollin
kers_ihy
Offline Send Email
Feb 1, 2007
11:05 am
27350
Thanks Chris and sorry for the double-post, it wasn't to get a quick answer....
fabiandev
Offline Send Email
Feb 1, 2007
11:24 am
27351
i have read it before..i am tired of reading..it's better someone show me the example of setting correct classpath in window...i don't want to use IDE right...
azwin
tanggam84
Offline Send Email
Feb 1, 2007
12:26 pm
27352
... From an engineer's position, not reading docs is not an option! Cheers Christoph...
Christoph Kiefer
mitsukiefi
Offline Send Email
Feb 1, 2007
12:38 pm
27353
I am pleased to announce the first release of the Jena GRDDL Reader. This implements (my best guess at the next draft of) the GRDDL specification: ...
Jeremy Carroll
jjchplb
Offline Send Email
Feb 1, 2007
1:09 pm
27354
... It's better that you learn to do it yourself, and learn how to ask for help usefully. If you've got a java.lang.NoClassDefFoundError, then you've got java...
Chris Dollin
kers_ihy
Offline Send Email
Feb 1, 2007
1:23 pm
27355
Thank you Holger, I am a wary of the $500 price for TopBraid. Any free/Java/open source options? Thanks! David ... period....
David Donohue
schtickdisc
Offline Send Email
Feb 1, 2007
1:31 pm
27356
... Yes. ... Whichever you like. Jena is an API which allows you to manage combinations of models in a flexible way, the best way to do so depends on your...
Dave Reynolds
derihy
Offline Send Email
Feb 1, 2007
3:31 pm
27357
I have some questions. 1) What does the prefix do in the next query? I am creating my own rdf file that resides on my pc. Do I have to have a http protocol...
Vern Kim
vern8203
Offline Send Email
Feb 1, 2007
3:54 pm
27358
Thanks Andy. But i have another question. At my database there is two cars that has price less than 10000: Car1 Price 9000,00 and Car2 Price 8000,00 SELECT * ...
Leonardo Ayres
leoayresm
Offline Send Email
Feb 1, 2007
4:13 pm
27359
It will return both cars, as both cars match the pattern and you did not put a limit on the number of results. Leonard On Thu, 01 Feb 2007 17:11:24 +0100,...
Leonard Levering
L_Levering
Offline Send Email
Feb 1, 2007
4:53 pm
27360
... To the data? use a file: URL: file:myFile.rdf file:///pathname/myFile.rdf (that's 3 slashes) ... As a namespace PREFIX? It's can be any URI - it does not...
Seaborne, Andy
andyseaborne
Offline Send Email
Feb 1, 2007
4:58 pm
27361
how can i limit the number of results?...
Leonardo Ayres
leoayresm
Offline Send Email
Feb 1, 2007
5:08 pm
27362
Thanks for your reply. But it didn't solve my problem. My SPARQL query in Java is as follows: String queryString = " SELECT ?x, ?fname "+ "WHERE (?x,...
vern8203
Offline Send Email
Feb 1, 2007
5:12 pm
27363
You could use LIMIT (see SPARQL documentation on the Jena web site). Christoph...
Christoph Kiefer
mitsukiefi
Offline Send Email
Feb 1, 2007
5:12 pm
27364
SPARQL has LIMIT (and ORDER BY) But better to ask a query that selects the information you want. Why do you want one and not the other? Andy...
Seaborne, Andy
andyseaborne
Offline Send Email
Feb 1, 2007
5:12 pm
27365
I want a query that brings the cheapest car....
Leonardo Ayres
leoayresm
Offline Send Email
Feb 1, 2007
5:18 pm
27366
... That's not SPARQL - it's RDQL. ... http://jena.sourceforge.net/ARQ/app_api.html and the javadoc explain how to create a Dataset to query, using the ...
Seaborne, Andy
andyseaborne
Offline Send Email
Feb 1, 2007
5:26 pm
27367
Thanks again for your reply. My question then is if I can write a RDQL query for a file that is located on my pc. Do I still have to use http://~ if I stick...
vern8203
Offline Send Email
Feb 1, 2007
5:47 pm
27368
... RDQL? ... Note that the RDQL engine and API in com.hp.hpl.jena.rdql.* is deprecated (Jena 2.4, 2.5) and will be removed. The new API is in ...
Seaborne, Andy
andyseaborne
Offline Send Email
Feb 1, 2007
6:04 pm
27369
... If none of the above works, you may have a problem similar to the one I had awhile ago. I set up my classpath using an IDE, and trying to package my class...
Daniel Gresh
dgresh@...
Send Email
Feb 1, 2007
7:02 pm
27370
Thanks. So, my specific question is if I can customize the part of <http://www.w3.org/2001/vcard-rdf/3.0#FN>, and make it point to my local file instead. Why...
vern8203
Offline Send Email
Feb 1, 2007
7:16 pm
27371
Hi, I want to rephrase my question. It seems to me that the URL of (http://www.w3.org/2001/vcard-rdf/3.0#FN) in RDQL keeps the data schema of rdf file. And I...
vern8203
Offline Send Email
Feb 1, 2007
7:41 pm
Messages 27341 - 27371 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