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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

  Messages Help
Advanced
Messages 31439 - 31470 of 48259   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
31439 Chris Dollin
kers_ihy Offline Send Email
Nov 1, 2007
8:28 am
... That should be no problem. ... !You shouldn't need to know the namespace prefix, since you'll already have got the resource. ... The entries in the...
31440 Dave Reynolds
derihy Offline Send Email
Nov 1, 2007
8:46 am
... Yes but the syntax will be very painful. ... You need to decide how you want to represent the sequence, you might use a SEQ or a list. For the SEQ case...
31441 Dave Reynolds
derihy Offline Send Email
Nov 1, 2007
8:57 am
Hi Ray, ... Sometimes but rarely. ... No. Assuming you are talking about a rule reasoner then in the current implementation of size will return the sum of the...
31442 Seaborne, Andy
andyseaborne Offline Send Email
Nov 1, 2007
8:57 am
... can ... PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT ?x { ?x rdfs:label "SomeString" } or PREFIX rdfs:...
31443 Dave Reynolds
derihy Offline Send Email
Nov 1, 2007
9:03 am
... Not sure why you are doing in in that order. You could create m directly from an OntModelSpec with the reasoner bound in and the base. ... The...
31444 Dave Reynolds
derihy Offline Send Email
Nov 1, 2007
9:09 am
... A good approach to this would be to create a new model to hold your instance data and arrange for that to import the ontology file. In that case you don't...
31445 fiveto_one85 Offline Send Email Nov 1, 2007
10:36 am
Hi, is still me. I have resolved the previous problem, thanks to all. But now I have another problem. When I try to get the name of a student I write a query...
31446 Chris Dollin
kers_ihy Offline Send Email
Nov 1, 2007
11:08 am
... That's right. If you want to search for a string with the spelling "Andrea" without caring about the language -- and it's not clear to me that this would ...
31447 fiveto_one85 Offline Send Email Nov 1, 2007
11:19 am
... efficient ... Bracknell, ... Berks RG12 1HN ... I modify the query: String queryString=getCommonPrefixes(modello_conoscenza)+"SELECT ?nome WHERE {?nome...
31448 Seaborne, Andy
andyseaborne Offline Send Email
Nov 1, 2007
12:15 pm
... That, or use FILTER (e.g. SELECT ?nome WHERE {?nome model:cognome ?t . FILTER(str(?t)="Tigli") } Andy...
31449 fiveto_one85 Offline Send Email Nov 1, 2007
1:31 pm
... Thanks, with this construct it runs correctly. But now I have a question. I wish to retrieve the name of an individual from a given value of the property...
31450 Damian Steer
pldms2 Offline Send Email
Nov 1, 2007
3:18 pm
... Hash: SHA1 Ok, we now have a proper abort() in svn. Sorry this took so long, a workshop got in the way. model.begin(); model.add(RDF.type, RDF.type,...
31451 Seaborne, Andy
andyseaborne Offline Send Email
Nov 1, 2007
3:51 pm
... the ... It can't return an empty value. Either it returns nothing or ?x is set to something, maybe a blank node. What does the data look like? "Tigli" was...
31452 pevmagalhaes Offline Send Email Nov 1, 2007
8:47 pm
Thanks Damian. I'll give it try and let you know. Paulo....
31453 pevmagalhaes Offline Send Email Nov 1, 2007
11:10 pm
Hey Damian, I got an exception in this scenario: OntModel ontologyModel = ModelFactory.createOntologyModel( OntModelSpec.OWL_MEM, model); model.begin(); ...
31454 Damian Steer
pldms2 Offline Send Email
Nov 1, 2007
11:48 pm
... What's happening is that the create class is adding: <http://www.com/#Class1> rdf:type owl:Class to the store. It then returns an OntClass, which checks...
31455 Ian Dickinson
ian_j_dickinson Offline Send Email
Nov 2, 2007
12:10 am
... Or, temporarily (or even permanently if you prefer) set OntModel strictMode() to false, which will turn off the type checking on .as(). Ian ...
31458 davidjonesuk Offline Send Email Nov 2, 2007
11:22 am
Thanks Andy, I didn't know about the 3-part thing. It worked perfectly. Cheers, David....
31459 bichly81 Offline Send Email Nov 2, 2007
11:30 am
Hi, I want to write a program to reason against rdf model with a list of rules like the following: Rules: rule1: x? status GoodCondition <- ?x has CleanCover ...
31460 Dave Reynolds
derihy Offline Send Email
Nov 2, 2007
12:04 pm
... See http://jena.sourceforge.net/inference/index.html#rules The default mode for a GenericRuleReasoner is "Hybrid" which means if you write the rules using...
31461 Bettina Schimanski
bettinaschim... Offline Send Email
Nov 2, 2007
4:32 pm
Chris and Andy, Thank you for your responses. :-) I already have working code to retrieve resultsets. My problem is that I then want to modify those specific...
31462 Ian Dickinson
ian_j_dickinson Offline Send Email
Nov 2, 2007
5:03 pm
Hi Bettina, ... Ah, I think I see what you doing. Although rdf:about looks similar to other properties in the RDF/XML serialization, in fact it's a particular ...
31463 bundes44 Offline Send Email Nov 2, 2007
5:17 pm
Great, it is just what I was looking for. Thank you very much ! and long life to Jena !...
31464 Bettina Schimanski
bettinaschim... Offline Send Email
Nov 2, 2007
5:31 pm
Hi Ian, Thanks for your feedback! I have tried that before with no luck... but you triggered a realization as to why it did not work for me before. Here is my...
31465 pevmagalhaes Offline Send Email Nov 2, 2007
6:23 pm
Hmmm . We probably could work around the createClass scenario but we have this scenario as well: model.begin(); ... model.createInstance(uri, class); ... ...
31466 Ian Dickinson
ian_j_dickinson Offline Send Email
Nov 2, 2007
6:44 pm
Hi Paulo, ... Um, I'm not sure that you're asking too much from a the transaction layer here. What would you expect the post-condition to be if you allow ...
31467 pevmagalhaes Offline Send Email Nov 2, 2007
7:19 pm
Hi Ian, Yeah, I'm sorry about the confusion. What I meant was that resource is null. (I had a assert resource != null there which was failing). Yes, what I...
31468 david_james20012001
david_james2... Offline Send Email
Nov 3, 2007
4:15 am
Back pain, neck pain, and arthritis related complications will no longer affect your movements and productivity if you follow the simple but very effective...
31469 fiveto_one85 Offline Send Email Nov 3, 2007
9:38 am
Hi, I have to add a value for a property of an individual and this value is int. In the doc i see that this method with int parameter is deprecate. It means...
31470 jqq
redwinster@... Send Email
Nov 3, 2007
10:02 am
Hi, I build a ontology in Protege 3.3.1 and saved as OWL file(RDF/XML-ABBREV). I wrote a program in java.It is OK when querying the model.When I serialized...
Messages 31439 - 31470 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