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 13178 - 13207 of 48259   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
13178 fabio_este Offline Send Email Jan 1, 2005
11:58 am
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"/> ...
13179 Ian Dickinson
ian_j_dickinson Offline Send Email
Jan 1, 2005
12:13 pm
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...
13180 liupeng
pk_floating Offline Send Email
Jan 1, 2005
1:25 pm
Hi, As Jena 2.2 Beta supports OWLMicro and OWLMini reasoners, what java code should I write? See below: OntModel fact =...
13181 fabio_este Offline Send Email Jan 1, 2005
2:49 pm
Why I obtain xmlns="http://www.myOntology.it/ontologiaPiano#" instead of xmlns:piano="http://www.myOntology.it/ontologiaPiano#" even if when I declare the...
13182 ana_belen_moreno
ana_belen_mo... Offline Send Email
Jan 2, 2005
10:00 am
Hi! I've created this ontology: <?xml version="1.0"?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" ...
13183 Dave Reynolds
derihy Offline Send Email
Jan 2, 2005
11:58 am
... 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...
13184 Dave Reynolds
derihy Offline Send Email
Jan 2, 2005
11:58 am
... Yes, use RDQL. Dave...
13185 Dave Reynolds
derihy Offline Send Email
Jan 2, 2005
12:06 pm
... You listed these yourself in an earlier message! The prebuilt OntModelSpec constants for Micro and Mini are OWL_MEM_MICRO_RULE_INF and ...
13186 Ian Dickinson
ian_j_dickinson Offline Send Email
Jan 2, 2005
1:04 pm
... 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...
13187 Ian Dickinson
ian_j_dickinson Offline Send Email
Jan 2, 2005
1:07 pm
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...
13188 liupeng
pk_floating Offline Send Email
Jan 2, 2005
4:09 pm
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...
13189 Rowland Watkins
erw01r Offline Send Email
Jan 2, 2005
4:53 pm
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...
13190 liupeng
pk_floating Offline Send Email
Jan 2, 2005
5:06 pm
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...
13191 Rowland Watkins
erw01r Offline Send Email
Jan 2, 2005
5:24 pm
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...
13192 liupeng
pk_floating Offline Send Email
Jan 2, 2005
5:48 pm
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...
13193 liupeng
pk_floating Offline Send Email
Jan 2, 2005
6:30 pm
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...
13194 ejohnson@...
javaman2012 Offline Send Email
Jan 2, 2005
7:01 pm
... 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...
13195 Rowland Watkins
erw01r Offline Send Email
Jan 2, 2005
9:52 pm
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 ...
13196 Seaborne, Andy
andyseaborne Offline Send Email
Jan 2, 2005
10:23 pm
... 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...
13197 ejohnson@...
javaman2012 Offline Send Email
Jan 3, 2005
3:22 am
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...
13198 Gasser Basil
kumpeljoe Offline Send Email
Jan 3, 2005
6:57 am
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...
13199 isaac_lera Offline Send Email Jan 3, 2005
10:22 am
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 ...
13200 ana_belen_moreno
ana_belen_mo... Offline Send Email
Jan 3, 2005
12:13 pm
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#" ...
13201 liupeng
pk_floating Offline Send Email
Jan 3, 2005
2:22 pm
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...
13202 Rowland Watkins
erw01r Offline Send Email
Jan 3, 2005
2:27 pm
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...
13203 Rowland Watkins
erw01r Offline Send Email
Jan 3, 2005
2:32 pm
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...
13204 andrew_crapo Offline Send Email Jan 3, 2005
3:17 pm
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...
13205 liupeng
pk_floating Offline Send Email
Jan 3, 2005
4:42 pm
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...
13206 Rowland Watkins
erw01r Offline Send Email
Jan 3, 2005
5:06 pm
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...
13207 John Bresnik
jbresnik@... Send Email
Jan 3, 2005
6:06 pm
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...
Messages 13178 - 13207 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