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 13178 - 13207 of 42038   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
13178
Can someone tell me how can I obtain a statement like this? <owl:Ontology rdf:about=""> <owl:imports rdf:resource="http://www.myOntology.it/myOntology.owl"/> ...
fabio_este
Offline Send Email
Jan 1, 2005
11:58 am
13179
Fabio - To add an owl:imports statement to the owl:Ontology resource, you need first to create the owl:Ontology and then to add the owl:imports to it. See...
Ian Dickinson
ian_j_dickinson
Offline Send Email
Jan 1, 2005
12:13 pm
13180
Hi, As Jena 2.2 Beta supports OWLMicro and OWLMini reasoners, what java code should I write? See below: OntModel fact =...
liupeng
pk_floating
Offline Send Email
Jan 1, 2005
1:25 pm
13181
Why I obtain xmlns="http://www.myOntology.it/ontologiaPiano#" instead of xmlns:piano="http://www.myOntology.it/ontologiaPiano#" even if when I declare the...
fabio_este
Offline Send Email
Jan 1, 2005
2:49 pm
13182
Hi! I've created this ontology: <?xml version="1.0"?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" ...
ana_belen_moreno
ana_belen_mo...
Offline Send Email
Jan 2, 2005
10:00 am
13183
... Your rule is in backward notation. If you are using the GenericRuleReasoner then backward rules are run backwards which shouldn't allow bultins in the...
Dave Reynolds
derihy
Offline Send Email
Jan 2, 2005
11:58 am
13184
... Yes, use RDQL. Dave...
Dave Reynolds
derihy
Offline Send Email
Jan 2, 2005
11:58 am
13185
... You listed these yourself in an earlier message! The prebuilt OntModelSpec constants for Micro and Mini are OWL_MEM_MICRO_RULE_INF and ...
Dave Reynolds
derihy
Offline Send Email
Jan 2, 2005
12:06 pm
13186
... Note that an owl:Restriction is a type of owl class; in particular it is an anonymous class ... the local name of an anonymous class is null. ... Well, the...
Ian Dickinson
ian_j_dickinson
Offline Send Email
Jan 2, 2005
1:04 pm
13187
Hi Fabio, The prefix mapping for the model is not the same as the one for the document manager. You need to alter the prefixes on the model itself, which you...
Ian Dickinson
ian_j_dickinson
Offline Send Email
Jan 2, 2005
1:07 pm
13188
Hi,Dave ... But I just need to print when the head is the reason result. That means I want the print() builtin is called when the body predicates are all...
liupeng
pk_floating
Offline Send Email
Jan 2, 2005
4:09 pm
13189
Luipeng, ... It looks like Dave's forward rule suggestion would be more applicable for your needs. Although I've never used backward rules, I do know they are...
Rowland Watkins
erw01r
Offline Send Email
Jan 2, 2005
4:53 pm
13190
Hi, I define my rule in backward form as follows: [AuthorizationRule2: (?r sspl:access denied)<-(?r sspl:subject ?s),(?p sspl:subject ?s), (?r sspl:object...
liupeng
pk_floating
Offline Send Email
Jan 2, 2005
5:06 pm
13191
Liupeng, ... print() will be called in the body because it always returns true in the body. ... In the term (?p ssp1:access allowed), is "allowed" a rule...
Rowland Watkins
erw01r
Offline Send Email
Jan 2, 2005
5:24 pm
13192
Hi,Rowland ... So the "allowed" is an individual but not a rule variable or a java variable. In fact this two rules have the same meaning. Right? Their bodies...
liupeng
pk_floating
Offline Send Email
Jan 2, 2005
5:48 pm
13193
Hi, I will explain my problem in more details. In fact I have 2 rules as follows: [AuthorizationRule1: (?r sspl:access allowed)<-(?r sspl:subject ?s),(?s...
liupeng
pk_floating
Offline Send Email
Jan 2, 2005
6:30 pm
13194
... The build.xml says major=2 minor=2 last retrieved from CVS @ 12/4/2004 ... single transaction? The transaction to store the largest file in a single...
ejohnson@...
javaman2012
Online Now Send Email
Jan 2, 2005
7:01 pm
13195
Luipeng, ... Ok, I think the problem is to do with using forward and backward rules together. I don't understand the consequences of mixing forward and ...
Rowland Watkins
erw01r
Offline Send Email
Jan 2, 2005
9:52 pm
13196
... OK - I can't be certain but if the time is approximately the same (7 hours) for file, for DB/transaction and DB/no-transaction then it looks like it isn't...
Seaborne, Andy
andyseaborne
Offline Send Email
Jan 2, 2005
10:23 pm
13197
Let me clarify, I load data from an external source (this is what take the same time) from which I create and store a Jena models (in one case to file, in...
ejohnson@...
javaman2012
Online Now Send Email
Jan 3, 2005
3:22 am
13198
good morning. ... I'm using version 2.1 sorry for not replying earlier, I was already more concerned with celebrating new year rather than working ;-) thanks...
Gasser Basil
kumpeljoe
Offline Send Email
Jan 3, 2005
6:57 am
13199
My problem: I dont know as to read the values of a resource with relations of an ontologia imported My ontology: ... <owl:Ontology rdf:about=""> <owl:imports ...
isaac_lera
Offline Send Email
Jan 3, 2005
10:22 am
13200
Hello! This is my ontology (then I'll make my question): <?xml version="1.0"?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" ...
ana_belen_moreno
ana_belen_mo...
Offline Send Email
Jan 3, 2005
12:13 pm
13201
Hi,Rowland If I want to define my builtin, I just need to extend the BaseBuiltin and register it. I don't need to unjar the jena.jar and add my builtin and...
liupeng
pk_floating
Offline Send Email
Jan 3, 2005
2:22 pm
13202
Liupeng, ... Hmm, "allowed" is an individual - should this not be a URI? Assuming you have a individual who's local name is "allowed", you probably need to put...
Rowland Watkins
erw01r
Offline Send Email
Jan 3, 2005
2:27 pm
13203
Liupeng, ... Correct, there's no need to modify the jena jar file. You could make a new package for yourself that holds your reasoner classes. I, for example...
Rowland Watkins
erw01r
Offline Send Email
Jan 3, 2005
2:32 pm
13204
I have seen at least one mention somewhere in the literature of possible query language extensions to allow adding/updating of RDF/OWL data. This would roughly...
andrew_crapo
Offline Send Email
Jan 3, 2005
3:17 pm
13205
Hi,Rowland ... Actually I use "allowed" directly in the backward rule and the rule body is matched successfully and I get the expected triple(auth2 sspl:access...
liupeng
pk_floating
Offline Send Email
Jan 3, 2005
4:42 pm
13206
Liupeng, ... Glad to here your forward rules work well! I think that there might be some issue with a forward rule being triggered by a backward rule. The Jena...
Rowland Watkins
erw01r
Offline Send Email
Jan 3, 2005
5:06 pm
13207
FYI CVS version of 3.0 doesn't mix with tomcat [out of the box] - seems to have a jetty dependency in the web.xml for serving up static pages. ? I'm not too...
John Bresnik
jbresnik@...
Send Email
Jan 3, 2005
6:06 pm
Messages 13178 - 13207 of 42038   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