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...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

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 16913 - 16942 of 42052   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
16913
So, if i undestand well, you suppose i'd like to write an owl ontology which describe my knowledge domain and a set of jena rules which describe exactly some...
Massimo Esposito
jim10241
Offline Send Email
Jul 1, 2005
7:59 am
16914
... If you only use this label for your bags then a trivial: listSubjectsWithProperty(nameProp, a3) would suffice. If you also want to confirm that the...
Dave Reynolds
derihy
Offline Send Email
Jul 1, 2005
8:01 am
16915
... I think we're having to give this answer often enough that we should add a FAQ entry (if we don't already have one)? -- Chris "electric hedgehog" Dollin ...
Chris Dollin
anover_alias
Offline Send Email
Jul 1, 2005
9:02 am
16916
... Good point and no we don't have one. Would you like to add one? If not, I'd be happy to. Dave...
Dave Reynolds
derihy
Offline Send Email
Jul 1, 2005
9:11 am
16917
... That is one approach. However, what I'm actually saying is that Jena's built in OWL reasoner is implemented using rules, it doesn't explicitly translate...
Dave Reynolds
derihy
Offline Send Email
Jul 1, 2005
9:21 am
16918
... I'll knock up some text and circulate it (locally); then when we like it I'll FAQify it. -- Chris "electric hedgehog" Dollin It's called *extreme*...
Chris Dollin
anover_alias
Offline Send Email
Jul 1, 2005
9:42 am
16919
When you speak about OWL reasoner i think that you don't mean rule general purpose reasoner but Jena OWL reasoner.But this reasoner isn't able to do inference...
Massimo Esposito
jim10241
Offline Send Email
Jul 1, 2005
9:52 am
16920
Hello everybody, I started working with Jena API a while back, and I have had some problems. I will be listing the problems and I hope somebody would help...
wasimateen111
Offline Send Email
Jul 1, 2005
1:53 pm
16921
... The built in Jena OWL reasoner is just the general purpose reasoner with a specific set of rules[*]. As I've already mentioned you can include those rules...
Dave Reynolds
derihy
Offline Send Email
Jul 1, 2005
2:14 pm
16922
... (snip) ... (what's that for? It doesn't do anything) [snip] ... Because you've asked to print the subjects of every statement in the model. The same entity...
Chris Dollin
anover_alias
Offline Send Email
Jul 1, 2005
2:16 pm
16923
... (Bags are probably not the best data-structure to use) ... Use Model::createBag() to create a Bag and Bag::add(RDFNode) to put things into it. It's in the...
Chris Dollin
anover_alias
Offline Send Email
Jul 1, 2005
2:20 pm
16924
... This lists all the triples in your model. ... This prints the subject of that triple. Those subjects are not classes, well just occasionally they might be...
Dave Reynolds
derihy
Offline Send Email
Jul 1, 2005
2:23 pm
16925
Thanks a lot for your help. Now i understand all i need. I must realize an application which deals with owl ontologies and swrl rules, using also swrl builtin....
Massimo Esposito
jim10241
Offline Send Email
Jul 1, 2005
2:47 pm
16926
Hi, I'm trying to read a URL to create an ontModel. However, when I list the classes (ontModel.listClasses()), some extra classes appear, that are not existent...
Markos Fragkakis
markos_raiden
Offline Send Email
Jul 1, 2005
4:14 pm
16927
... They are the anonymous class expressions from your input model. For instance: <owl:Class rdf:ID="BodyWithNonAdjustableShutterSpeed"> <owl:intersectionOf...
Ian Dickinson
ian_j_dickinson
Offline Send Email
Jul 1, 2005
4:33 pm
16928
... Ian, thanks for the immediate response! You are right, it didn't occur to me that anonymous classes would be named in the model. However, there is one more...
Markos Fragkakis
markos_raiden
Offline Send Email
Jul 1, 2005
6:27 pm
16929
Hi Markos, ... RDF defines a model as a set of triples. So, read() sees a triple that is already in the model, it is not added twice. So: someNs:foo rdf:type...
Ian Dickinson
ian_j_dickinson
Offline Send Email
Jul 1, 2005
6:59 pm
16930
I just checked in a number of changes to ModelRDB in the current CVS. Changes to ModelRDB ... Memory leaks: A number of memory leaks were plugged. Thanks to...
Kevin Wilkinson
wilkvin
Offline Send Email
Jul 1, 2005
10:07 pm
16931
... Thank you much Chris.D, will read it again...........
wasimateen111
Offline Send Email
Jul 1, 2005
11:24 pm
16932
... property at ... Thank you Dave!...
wasimateen111
Offline Send Email
Jul 1, 2005
11:27 pm
16933
Hi all! I want to remove all classes and statements in OntModel1 that are contained in OntModel 2. I used a StmtIterator to remove the statements, but I can't...
fragakis@...
markos_raiden
Offline Send Email
Jul 2, 2005
2:13 pm
16934
Hello Markos, ... ontModel1.remove( ontModel2 ); Ian...
Ian Dickinson
ian_j_dickinson
Offline Send Email
Jul 2, 2005
3:51 pm
16935
... jena.jar is not on your classpath for your web application. Compilation failed - your JSP was never called. ... That error tells you compilatiion failed. ...
Seaborne, Andy
andyseaborne
Offline Send Email
Jul 2, 2005
4:27 pm
16936
Hi, I have a 20MB Rdf file.When I am trying to read the RDF file, I am getting "OutofMemory" error. Is there any class in Jena, which allows me to read RDF...
arunapotti
Offline Send Email
Jul 2, 2005
10:04 pm
16937
Hi, I got this error when I load a rdf file to persisten model. Some statements of the rdf have about 300 characters length literal. java.sql.SQLException:...
phuoc_tai
fucai1116
Offline Send Email
Jul 3, 2005
7:11 pm
16938
... Have you tried the obvious trick of increasing the JVM heap size? I can think of several workarounds: they all assume that the RDF file *can* be treated in...
Chris Dollin
anover_alias
Offline Send Email
Jul 4, 2005
8:37 am
16939
Hello, May I know if the rule engine Jena used is built by Jena itself or from the third party? Cheers Hai...
Hai WANG
hwang@...
Send Email
Jul 4, 2005
9:41 am
16940
... It was developed (by Dave Reynolds) as part of Jena. -- Chris "electric hedgehog" Dollin It's called *extreme* programming, not *stupid* programming....
Chris Dollin
anover_alias
Offline Send Email
Jul 4, 2005
9:48 am
16941
... Ah, that changes things somewhat. If you specifically need SWRL then life is harder. ... Yes and no :-) "Yes", in that if all you need is a few Jena rules...
Dave Reynolds
derihy
Offline Send Email
Jul 4, 2005
9:52 am
16942
... [snip] ... Don't know. The default threshold for long literals is 250 so I would expect it to do so. The best person to answer this is Kevin, who is in the...
Dave Reynolds
derihy
Offline Send Email
Jul 4, 2005
10:14 am
Messages 16913 - 16942 of 42052   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