Search the web
Sign In
New User? Sign Up
jena-dev · Jena Developers
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 18719 - 18749 of 42069   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
18719
... That means that the name you are using is not a valid name under the XML rules for RDF. Specifically, [9:33] means that the problem occurs on line 9,...
Ian Dickinson
ian_j_dickinson
Offline Send Email
Oct 1, 2005
8:45 am
18720
... $B!u(B ... XML ... Yes, I know this. But I just wonder why '$B$*$b$A$c!u%[%S!<(B' not accepted. You told me that it will accept the japanese class ...
gen
senyechu
Offline Send Email
Oct 1, 2005
9:15 am
18721
... Hmm, I'm afraid this reaches the limit of my competence. Jeremy is our expert on XML parsing and internationalisation. He has been travelling this week,...
Ian Dickinson
ian_j_dickinson
Offline Send Email
Oct 1, 2005
10:32 am
18722
This is another example part of my rdf document: <pgterms:etext rdf:ID="etext14299"> <dc:publisher>&pg;</dc:publisher> <dc:title rdf:parseType="Literal">Native...
ivanolacerenza
Offline Send Email
Oct 1, 2005
10:47 am
18723
Hi, Ian, ... Thank you very much. Very appreciated to your kindness. I can wait. Anyway , I can query/retrieve data currently, and check some other things. ...
gen
senyechu
Offline Send Email
Oct 1, 2005
10:53 am
18724
Hi all, I would like to know the difference between XSB (Deductive Database System) and the Jena reasoners like RDFSRuleReasoner and OWLReasoner ? Both ...
Alexandre Parra
parraingles5h
Offline Send Email
Oct 1, 2005
1:54 pm
18725
... What exactly is the error? Is prefix dcterms defined in USING? As <http://purl.org/dc/terms/> ? ... If you're expecting dcterms:LCSH and dcterms:LCC to be...
Seaborne, Andy
andyseaborne
Offline Send Email
Oct 1, 2005
3:45 pm
18726
Effectively the previous error was my fault. I'm trying to use this query on the same data set of previous message: SELECT ?etext,?soggetto WHERE (?etext...
ivanolacerenza
Offline Send Email
Oct 1, 2005
4:54 pm
18728
... I resolved my trouble! The right query is: SELECT ?etext,?soggetto WHERE (?etext dc:subject ?bag) (?bag rdf:type rdf:Bag) (?bag ?x ?y) (?y rdf:value...
ivanolacerenza
Offline Send Email
Oct 1, 2005
5:13 pm
18729
... ^^^^^^^^ wrong prefix? You don't need the AND clause anyway because you have (?y rdf:value ?soggetto) which rules out the (?y rdf:type ...) Andy...
Seaborne, Andy
andyseaborne
Offline Send Email
Oct 1, 2005
8:24 pm
18730
... You are right! The AND close was useless. Now I'm using this and it works fine: SELECT ?etext,?soggetto WHERE (?etext dc:subject ?bag) (?bag rdf:type...
ivanolacerenza
Offline Send Email
Oct 2, 2005
12:19 am
18731
... Yes, both " and ' are used as literal delimiters (too many people expected that so I dropped the '-only convention). The delimiters were interchangeable,...
Dave Reynolds
derihy
Offline Send Email
Oct 2, 2005
11:44 am
18732
... The job of createRDFSModel is to create an inference model with the RDFS reasoner in it. If you don't want any reasoner just use...
Dave Reynolds
derihy
Offline Send Email
Oct 2, 2005
11:46 am
18733
... Correct. In backward rules the engine uses prolog-style conventions of top-to-bottom, left-to-right maching but that is not part of the semantics just the...
Dave Reynolds
derihy
Offline Send Email
Oct 2, 2005
11:54 am
18734
... Why don't you just create a bunch of patterns to explicitly match the reification quad :-) ... Well you have two options here. First, you can use the...
Dave Reynolds
derihy
Offline Send Email
Oct 2, 2005
12:00 pm
18735
... The backward chaining rule engine within Jena is based on a simplified version of the same algorithm used in XSB. Jena rules do not support negation which...
Dave Reynolds
derihy
Offline Send Email
Oct 2, 2005
12:07 pm
18736
Hi, I need to find object in a triple RDF (subject, predicate, object) where subjects are individuals, and object are classes. I wrote this source which i have...
niki_oro
Offline Send Email
Oct 2, 2005
1:49 pm
18737
... Hi Summary: - problem analysis - work around #1, delete half-width ampersand (my current preference) - work around #2 use rdf:about rather than rdf:ID...
Jeremy Carroll
jjchplb
Offline Send Email
Oct 3, 2005
12:18 pm
18738
I have a query I've executed which comes back correctly with three answers. I then try to add statements to my where clause to match the entire model, and I...
Jay
jay_askren_l...
Offline Send Email
Oct 3, 2005
2:38 pm
18739
... executes ... What's the query (before and after)? What's the query language? If your additional patterns are independent (not variables shared) of the...
Seaborne, Andy
andyseaborne
Offline Send Email
Oct 3, 2005
2:51 pm
18740
We are using RDQL We have a hiearchical tree with parents and children. Originally, I only included the parents up to the root in the query first query. The...
Jay
jay_askren_l...
Offline Send Email
Oct 3, 2005
3:06 pm
18741
... The various calls Model.listStatements and Resource.listProperties will return Statement objects, use Statement.getObject to get the object value. ... You...
Dave Reynolds
derihy
Offline Send Email
Oct 3, 2005
3:17 pm
18742
Hi, We have come across something a bit odd: it seems that rdf:parseType=Literal is interfering with the xml:lang attribute.. Here is my model: <?xml...
katieportwin
Offline Send Email
Oct 3, 2005
3:28 pm
18743
... See http://www.w3.org/TR/rdf-concepts/#section-literals Basically only plain literals are allowed an xml:lang tag, XMLLiterals count as typed literals and...
Dave Reynolds
derihy
Offline Send Email
Oct 3, 2005
3:47 pm
18744
... As an example with your data <rdf:RDF xml:base="http://metastore.ingenta.com/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" ...
Jeremy Carroll
jjchplb
Offline Send Email
Oct 3, 2005
4:00 pm
18745
hello, How can I add an rdf:parseType="Collection" attribute to an objectProperty? If I use something like: ObjectProperty parseType = ...
Ale
ale_univ
Offline Send Email
Oct 3, 2005
5:12 pm
18746
... Not within the language - you'd have to supress duplicates withinyour application. Without seeing the query, it is hard to be precise but as a general...
Seaborne, Andy
andyseaborne
Offline Send Email
Oct 3, 2005
5:27 pm
18747
I'm using RDQL and have a query like the following: SELECT X1 WHERE ( ?x1, file:hasType, file:TypeA ), ( ?x1, file:hasParent>, ?x2 ), ( ?x2, file:hasType>,...
Jay
jay_askren_l...
Offline Send Email
Oct 3, 2005
5:43 pm
18748
... == is integer equality in RDQL (RDQL predates RDf datatying). You want string equality - eq. Replacing the ?x1/?x2 with the value of FullURI.. is better...
Seaborne, Andy
andyseaborne
Offline Send Email
Oct 3, 2005
5:50 pm
18749
... You don't want to do that. rdf:parseType="Collection" is a syntactic characteristic of the XML serialisation of RDF. It is not part of the semantic model....
Ian Dickinson
ian_j_dickinson
Offline Send Email
Oct 3, 2005
6:42 pm
Messages 18719 - 18749 of 42069   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help