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 7838 - 7867 of 48259   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
7838 Seaborne, Andy
andyseaborne Offline Send Email
May 1, 2004
12:22 pm
Hi there, Your program seems to add the Java object not the typed literal to the graph. In particular what does r.setPropertyValue(p, cal); do? There is no...
7839 Seaborne, Andy
andyseaborne Offline Send Email
May 1, 2004
1:36 pm
Tut, tut. That program I gave depends on hash ordering when retrieving the data literal again. Either remove the line: r.addProperty(p, cal) ; Or add it as a...
7840 ruecassette10 Offline Send Email May 1, 2004
3:46 pm
Currently I use the following code to create an instance of a class and add property values: String uri = jgaNS + "ViewId1"; OntClass viewClass =...
7841 Dickinson, Ian J
ian_j_dickinson Offline Send Email
May 1, 2004
4:42 pm
I think you're getting some different concepts mixed up here. The model itself *only* stores full URI's. The form of the stored URI's do not depend on the...
7842 ruecassette10 Offline Send Email May 1, 2004
5:13 pm
Ian - The equivalent code using setPropertyValue goes like this: String uri = jgaNS + "ViewId1"; OntClass viewClass = drModel.getOntClass( jgaNS + "View" ); ...
7843 Dave Reynolds
derihy Offline Send Email
May 1, 2004
5:37 pm
In the addProperty case you are passing in a String, not an RDFNode. This means you are invoking the convenience method that will wrap up a ... In the...
7844 Dave Reynolds
derihy Offline Send Email
May 1, 2004
5:41 pm
... Not too bad. In the documentation the first example of using GenericRuleReasoner is a property concatenation example. ...
7845 ruecassette10 Offline Send Email May 1, 2004
5:50 pm
Yes - that sets me straight - thanks very much - and thanks to Ian as well ... RDFNode. ... up a ... i.e....
7846 Dave Reynolds
derihy Offline Send Email
May 1, 2004
6:17 pm
Thanks for point this out, clearly a bug. I'll take a look in my next round of Jena work. If you could mail me your sample code that would be helpful in cross ...
7847 swap_adityak Offline Send Email May 2, 2004
8:00 am
Hi, I have an OntModel and I want to get all the statements associated with a specific OntResource in that model in RDF/XML. Taking the example of the food...
7848 Dickinson, Ian J
ian_j_dickinson Offline Send Email
May 2, 2004
9:42 am
Hi Aditya, This is known as "bNode closure". There are various implementations around: for example, there's a very general version in Joseki. We have talked...
7849 sisifofelice@... Send Email May 2, 2004
3:34 pm
Hi, I'm writing some code to have an adapting layer between Sesame and Jena. The idea is to access a Jena model through the Sesame SAIL API, as suggested in...
7850 swap_adityak Offline Send Email May 2, 2004
4:40 pm
... talked about ... yet. If you ... method ... reachable by any ... only queue ... I say, ... Thanks Ian - this will give me a chance to play w/ Joseki as...
7851 David Roetzel
david.roetzel@... Send Email
May 2, 2004
9:52 pm
Hi, i want to create forward rules for the RETE-reasoner from within a GUI application. I thought that creating my own Rule objects would be a good idea since ...
7852 Dave Reynolds
derihy Offline Send Email
May 3, 2004
9:12 am
Hi David, I'd recommend using Rule.parseRule in this case. The overhead of string parsing is not very great and in a GUI application I doubt you'll be creating...
7853 cybernv Offline Send Email May 3, 2004
3:47 pm
Thanks, i can execute the second example but does it support OWL ontology files? when i try to load ontology with the ending 'owl' it says the file cannot be...
7854 Dave Reynolds
derihy Offline Send Email
May 3, 2004
4:45 pm
... Yes. Though of course it only implements the semantics shown in those rules. ... ModelLoader tries to guess the file format from the suffix. There was a ...
7855 jesusb2_79 Offline Send Email May 3, 2004
4:46 pm
Hi, in the next owl code: <owl:Class rdf:ID="Wine"> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#hasMaker"/> ...
7856 dacko sissengar
sissengar Offline Send Email
May 3, 2004
5:26 pm
Hello, Someone can tell me how can I do to run the example Tutorial05.java of Jena documentation under Jbuilder ? I tried it but I got exception which says...
7857 Seaborne, Andy
andyseaborne Offline Send Email
May 3, 2004
6:23 pm
Tutorial05 loads its example data by static final String inputFileName = "vc-db-1.rdf"; ... InputStream in = Tutorial05.class .getClassLoader() ...
7858 Fred Hartman
fredh666 Offline Send Email
May 3, 2004
6:25 pm
I am interested in adding a pluggable, data-aware, security authorization interface to Joseki/Jena, which would allow people to plug-in operation and data...
7859 Seaborne, Andy
andyseaborne Offline Send Email
May 3, 2004
6:30 pm
... Good objective - I see it as good if application developers can mix and match useful technology. Its good timing as well with the W3C Data Access Workign...
7860 Kevin Wilkinson
wilkvin Offline Send Email
May 3, 2004
6:37 pm
baoshi, sorry for the delayed reply - i was out of the office. dave's reply is correct - jena1 uses the same indexing scheme as jena1. thanks for noting that...
7861 Dickinson, Ian J
ian_j_dickinson Offline Send Email
May 3, 2004
7:12 pm
From: jesusb2_79 [mailto:jesusb2_79@...] ... This has come up many times on this list in the past - please remember that you can check the archives for...
7862 wangxiao
xiaoshu_wang... Offline Send Email
May 3, 2004
9:21 pm
How to distinguish the blank node defined in an rdf/owl file from those generated automatically by Jena? Xiaoshu...
7863 Bery Leouro
bery_leouro Offline Send Email
May 3, 2004
9:30 pm
Thank you Mr Andy, That you explained it's what I did when I ran this example with java command under MsDos shell and it waked. But with Jbuilder, I...
7864 Jeremy Carroll
jjchplb Offline Send Email
May 4, 2004
8:10 am
... I think the simple answer is "you can't (by simple inspection)" (or more to the point shouldn't). There probably is some analysis you might able to do on...
7865 Seaborne, Andy
andyseaborne Offline Send Email
May 4, 2004
8:19 am
I don't use JBuilder - I use Eclipse. It would help if you could provide some information, like a stacktrace, and the classpath under JBuilder. It is rather...
7866 Dave Reynolds
derihy Offline Send Email
May 4, 2004
9:21 am
... [snip] ... We did do a little work on this a couple of years ago. See http://www.hpl.hp.com/techreports/2002/HPL-2002-328.html section 5.2.6. That work was...
7867 hydenc2003 Offline Send Email May 4, 2004
9:54 am
Thank you, Jeremy, Dave and Ian, for your responses, have been very useful. David. ... your code ... putting ... intended to ... true, but ... to ... If that ...
Messages 7838 - 7867 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