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 27341 - 27371 of 48259   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
27341 Chris Dollin
kers_ihy Offline Send Email
Feb 1, 2007
8:00 am
... Yes. ... It shows the /class hierarchy/ of the input, because that's what it's for (hence the name, DescribeClass). ... Yes: DescribeClass describes...
27343 Seaborne, Andy
andyseaborne Offline Send Email
Feb 1, 2007
8:34 am
... 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...
27344 pogomwg2000 Offline Send Email Feb 1, 2007
9:12 am
... involves ... AIDIMA:productsInfo) ... or ... one. ... AIDIMA:productsInfo) ... like a ... I just found out something. This problem occurred on jena 2.5. I ...
27345 Dave Reynolds
derihy Offline Send Email
Feb 1, 2007
9:46 am
... 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 ...
27346 Dave Reynolds
derihy Offline Send Email
Feb 1, 2007
9:50 am
... 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...
27347 fabiandev Offline Send Email Feb 1, 2007
9:57 am
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...
27348 Chris Dollin
kers_ihy Offline Send Email
Feb 1, 2007
10:24 am
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...
27349 Chris Dollin
kers_ihy Offline Send Email
Feb 1, 2007
11:05 am
... Could it be that the class descriptions are complex? Alternatively (or perhaps additionally), the inference engines suffer from a general flaw -- they use...
27350 fabiandev Offline Send Email Feb 1, 2007
11:24 am
Thanks Chris and sorry for the double-post, it wasn't to get a quick answer....
27351 azwin
tanggam84 Online Now Send Email
Feb 1, 2007
12:26 pm
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...
27352 Christoph Kiefer
mitsukiefi Offline Send Email
Feb 1, 2007
12:38 pm
... From an engineer's position, not reading docs is not an option! Cheers Christoph...
27353 Jeremy Carroll
jjchplb Offline Send Email
Feb 1, 2007
1:09 pm
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: ...
27354 Chris Dollin
kers_ihy Offline Send Email
Feb 1, 2007
1:23 pm
... 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...
27355 David Donohue
schtickdisc Offline Send Email
Feb 1, 2007
1:31 pm
Thank you Holger, I am a wary of the $500 price for TopBraid. Any free/Java/open source options? Thanks! David ... period....
27356 Dave Reynolds
derihy Offline Send Email
Feb 1, 2007
3:31 pm
... 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...
27357 Vern Kim
vern8203 Offline Send Email
Feb 1, 2007
3:54 pm
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...
27358 Leonardo Ayres
leoayresm Offline Send Email
Feb 1, 2007
4:13 pm
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 * ...
27359 Leonard Levering
L_Levering Offline Send Email
Feb 1, 2007
4:53 pm
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,...
27360 Seaborne, Andy
andyseaborne Offline Send Email
Feb 1, 2007
4:58 pm
... 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...
27361 Leonardo Ayres
leoayresm Offline Send Email
Feb 1, 2007
5:08 pm
how can i limit the number of results?...
27362 vern8203 Offline Send Email Feb 1, 2007
5:12 pm
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,...
27363 Christoph Kiefer
mitsukiefi Offline Send Email
Feb 1, 2007
5:12 pm
You could use LIMIT (see SPARQL documentation on the Jena web site). Christoph...
27364 Seaborne, Andy
andyseaborne Offline Send Email
Feb 1, 2007
5:12 pm
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...
27365 Leonardo Ayres
leoayresm Offline Send Email
Feb 1, 2007
5:18 pm
I want a query that brings the cheapest car....
27366 Seaborne, Andy
andyseaborne Offline Send Email
Feb 1, 2007
5:26 pm
... 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 ...
27367 vern8203 Offline Send Email Feb 1, 2007
5:47 pm
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...
27368 Seaborne, Andy
andyseaborne Offline Send Email
Feb 1, 2007
6:04 pm
... 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 ...
27369 Daniel Gresh
dgresh@... Send Email
Feb 1, 2007
7:02 pm
... 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...
27370 vern8203 Offline Send Email Feb 1, 2007
7:16 pm
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...
27371 vern8203 Offline Send Email Feb 1, 2007
7:41 pm
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...
Messages 27341 - 27371 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