Thanks I am working on a new release of ARP to conform with the latest test cases WD from the W3C. I will look at your changes and role them in as appropriate....
This sounds like a bug in your code :( It seems as though you moved towards trying to find a minimal test case but it didn't exhibit the bug. (i.e. the bug...
1226
tarod@...
Jun 4, 2002 8:56 am
In the class ResourceImpl in com.hp.hpl.mesa.rdf.jena.common package you can read: protected void splitNameSpace() { int splitPoint = Util.splitNamespace(uri);...
... Hmm, maybe you try using legal URI's. Its not clear why this should matter to you. ... The reason is that I was trying to conform to M&S and it says that ...
From what I understand, FaCT is incomplete as a DL in the sense that it cannot handle individuals or datatypes. Have you considered using an FOL reasoner such...
1230
tarod@...
Jun 5, 2002 2:38 pm
I'm not using that for properties, I found that properties must have a namespace, but you can create a resource without namespace, then one of my users simply...
... Well the example in your last message wasn't a legal URI REF. ... So not all resources are named with a legal URI REF. ... Let me try be clearer. Why did...
1232
tarod@...
Jun 6, 2002 6:59 am
All URI doesn't need a namespace!!!! the URNs are valid URIs and they don't imply a namespace, do they? You can define resources like <Description...
Hi Tarod, ... If you are going to shout, this conversation isn't going to last long. And I'm perplexed by the need to shout when I agree with you. ... The...
1234
tarod@...
Jun 6, 2002 1:58 pm
Sorry mr. Brian I didn't want to shout, it was just an exclamation, remember that trying to express my ideas in not my mother language it's difficult for me. ...
I've heard from somebody at the www-ws@... mailing list, that support for DAML-S will be in the next release coming at the end of this month (June). Can...
... I just saw that www-ws message myself and forwarded it to the sourceforge jena developer's list. As far as I know no one at HP, and certainly no one on the...
... If you use URI's which are not legal, don't be surprised if we start checking the validity of arguments and all your code breaks. ... Yup. Can you just...
... A very small suggestion. Rather than attach an arbitrary http: base URL to convert a local name into a URI an alternative is to make them URNs. We've found...
1239
tarod@...
Jun 6, 2002 3:13 pm
Yes, yes I sure can assign to this resources a junk namespace and everything will work for ever, I'm also using an interface, so my users don't call jena...
1240
tarod@...
Jun 6, 2002 3:38 pm
I tried the following code public void uris() { try { m = new ModelMem(); Resource r1 = m.createResource("urn:MARC"); System.out.println("ln: " +...
Sorry, I didn't mean to add confusion. You are right that the current namespace splitter fails to split URN's. That is possibly a defect in the splitter code. ...
1242
tarod@...
Jun 6, 2002 4:31 pm
Dave, thanks for your help, you are not adding any kind of confusion, all ideas will be welcomed. Probably I'm going to use the junk uri, because it will work...
I've been making intensive use of JUnit testing in my recent developments. But there's a particular issue with testing Jena applications I'm not sure how best...
Hi, all: I have a question: I have read the jena API and can not find a way to traverse in the RDF model. Can any one tell me if there is a way to traverse...
... I've not done this in anger, but the approach that occurs to me is: (a) implement a conversion from the [results of the] query into a [Mem]Model. (b)...
I do this by an innovative technique I call "brute force" :-) If you look in com.hp.hp.mesa.rdf.jena.rdb.TestStoreRDB then buried in there is some simple code...
In RDF there is no notion of a tree with parent/child nodes. RDF is a graph of nodes linked by property arcs. So the way to traversal a model is to follow ...
There is a small problem with HTML-only mail on this list. This problem might only affect me but may also affect others. If you set your mail software to send ...
Hy! I'm new to Jena (also to RDF) and would like to run Tutorial05. The compilation run well, but for the execution, I need to compile a lot of classes in the...
Yes, I've checked that jena.jar was set to my classpath. By the way, Tutorial 01 to Tutorial 04 are running well. What can happens? Steevy ... From: cyril...
1253
Steven Taschuk
staschuk@...
Jun 8, 2002 5:34 pm
If you call Model.read( String ) with an ill-formed XML document at the given URL, an RDFError is thrown. Imho this is not the Right Thing -- a subclass of...