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 687 - 716 of 48259   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
687 Seaborne, Andy
andyseaborne Offline Send Email
Feb 1, 2002
9:44 am
Andrew, Multiple FROM's is something I will be adding - Libby supports them with the semantics of model merge. For experimental applications it is a useful ...
688 Brian McBride
bwmb Offline Send Email
Feb 1, 2002
12:00 pm
Hi Andrei, ... Bad plan. Clients are not intended to call Resource constructors directly but are expected to always go through the model API. That way the...
689 David Allsopp
dallsoppuk Offline Send Email
Feb 1, 2002
12:07 pm
... Does similar functionality exist for anonymous resources? e.g. if one performed a query on a model involving an anonymous resource, is there a way to...
690 Andrei S. Lopatenko
andrei_lopat... Offline Send Email
Feb 1, 2002
1:48 pm
David your questions are more related to only Jena then subject of this list - general RDF/SW problems, so it'd better send them to jena yahoo-group I'm...
691 Andrei S. Lopatenko
andrei_lopat... Offline Send Email
Feb 1, 2002
1:57 pm
Brian, yes, I completely agree with you, I just tried to make my life little easer ... It would be logically correct allow to create only resources with model ...
692 Andrei S. Lopatenko
andrei_lopat... Offline Send Email
Feb 1, 2002
2:44 pm
About base URI behaviour 1 ==================== when I tried to use public class FTest { public static void main(String[] args ) { try { Model mem = new...
693 douglas_villa Offline Send Email Feb 1, 2002
7:48 pm
Hi, I need transform a DAML ontology in a tree structure, that permit to cross this structure. Anybody has a samples code or idea of like doing that. Thanks. ...
694 Dickinson, Ian J
ian_j_dickinson Offline Send Email
Feb 1, 2002
8:06 pm
Hi Douglas, Not quite sure what you want to achieve. Can you give an example? Cheers, Ian From: douglas_villa [mailto:dougtec@...]...
695 douglas_villa Offline Send Email Feb 1, 2002
8:26 pm
I need to convert a file DAML, for example image.daml in a structure similar to an object DOM of such form that can obtain something like this: IMAGE / l...
696 Dickinson, Ian J
ian_j_dickinson Offline Send Email
Feb 1, 2002
9:07 pm
Hi Douglas, ... do you mean to traverse the graph, performing some computation as you go (like visitor pattern)? Assuming that you do, you've still got a...
697 Brian McBride
bwmb Offline Send Email
Feb 2, 2002
3:44 pm
... Right. The Jena API requires resources to be identified with absolute URI's. It doesn't do any checks on the validity of the URI's you give it, so its ...
698 Brian McBride
bwmb Offline Send Email
Feb 2, 2002
3:45 pm
... yes, but not in the way you mean. ... This wasn't intended to be supported for clients, but of course, if one is building a store, there is a need to be...
699 waylandyu Offline Send Email Feb 2, 2002
5:07 pm
I'd like to know if there is currently any support for using JDBC URLs as a data source for the command line interface to RDQL, jena.rdfquery. I've seen...
700 Andrei S. Lopatenko
andrei_lopat... Offline Send Email
Feb 3, 2002
3:23 pm
Douglas, I think Ian very clearly answered all your questions But if you need some graph with explicit programme graph semantic I've created example for you ...
701 Libby Miller
millibby Offline Send Email
Feb 3, 2002
11:12 pm
yeah, is there? Inkling does this, and it's very handy indeed (I reckon). libby...
702 Nataliya Roberts
nataliya@... Send Email
Feb 4, 2002
2:09 am
Hi, We are using Jena to parse RDF files, and would like to deliver our application via Java Webstart. However, we have encountered security problem and were...
703 Seaborne, Andy
andyseaborne Offline Send Email
Feb 4, 2002
11:51 am
Hmm - there is a bug in the way the RDQL subsystem attached databases from the command line. Well - there are two bugs actually. 1/ The ModelLoader (the class...
704 François-Paul Serv...
fps@... Send Email
Feb 5, 2002
12:22 am
Hello, I can't get model.write(writer,lang,base) working as I expect: I read a file using model.read(reader,base). This file contains relative urls that get...
705 Brian McBride
bwmb Offline Send Email
Feb 5, 2002
9:39 am
Hi François-Paul, ... Yup, the model operates on absolute URI's. ... That is certainly true of the basic writer. Have you tried the pretty writer - set lang...
706 koskastrad Offline Send Email Feb 5, 2002
11:00 am
Hi, Before I begin I must say that I am new in Java Programming, so forgive me if you find some of my questions too simple. I am having a project where two...
707 Andrei S. Lopatenko
andrei_lopat... Offline Send Email
Feb 5, 2002
11:08 am
Dear Kostas, to parse DAML ontology you can use Jena DAML API see description http://ginger.hpl.hp.com/semweb/daml.html Simple example of use of it - ...
708 Dickinson, Ian J
ian_j_dickinson Offline Send Email
Feb 5, 2002
11:14 am
Just quick addition to Andrei's note - the official, and therefore durable, hostname is www.hpl.hp.com ginger.hpl is just a local name for the server, and is...
709 js0454614397 Offline Send Email Feb 5, 2002
4:09 pm
Hi, I have a resource URI with a space in the name, whether this is a valid URI in anyones opinion, I'll ignore for now. This URI is located in an RDF/XML...
710 Jeremy Carroll
jjchplb Offline Send Email
Feb 5, 2002
4:11 pm
... What used to work, I think prior to ARP being the default parser, was that relative URIs remained relative URIs through-out. As far as I know neither of...
711 koskastrad Offline Send Email Feb 5, 2002
4:27 pm
Dear Mr. Lopatenko Thank you for your help.I know of course that DAML's primitives are built on RDFS. But I was wondering if it is ok to use the DAML API to ...
712 Seaborne, Andy
andyseaborne Offline Send Email
Feb 5, 2002
4:34 pm
Hi there, The RDQL side of the answer is that URIs can't contain spaces (see RFC2396 - section 2.4.3) and so you should have %20. This isn't escaping in the...
713 Andrei S. Lopatenko
andrei_lopat... Offline Send Email
Feb 5, 2002
4:41 pm
Dear Kostas I'd prefer to use DAML API it is implemented in terms of DAML you do need translate RDF expressionsinto DAML it has some reasoning support So a...
714 douglas_villa Offline Send Email Feb 5, 2002
4:46 pm
Hi, I am using this java code for discover the subclassof: for (Iterator it = m.listDAMLClasses(); it.hasNext(); count++) { DAMLClass iclass =...
715 Andrei S. Lopatenko
andrei_lopat... Offline Send Email
Feb 5, 2002
5:14 pm
Douglas, could you write, please, full URI of "rdfs" in your ontology file? Andrei ... From: "douglas_villa" <dougtec@...> To:...
716 douglas_villa Offline Send Email Feb 5, 2002
5:39 pm
Andrei, this is my method for (Iterator it = m.listDAMLClasses(); it.hasNext(); count++) { DAMLClass iclass = (DAMLClass)it.next(); //...
Messages 687 - 716 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