[XML-SIG] [ pyxml-Bugs-418323 ] RDF problem

noreply@sourceforge.net noreply@sourceforge.net
Mon, 23 Apr 2001 11:52:38 -0700


Bugs item #418323, was updated on 2001-04-23 11:52
You can respond by visiting: 
http://sourceforge.net/tracker/?func=detail&atid=106473&aid=418323&group_id=6473

Category: 4Suite
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Mike Olson (mikeolson)
Assigned to: Nobody/Anonymous (nobody)
Summary: RDF problem

Initial Comment:
Email from "Joern v. Kattchee" <kattchee@ikv.de>

Hello,

there seems to be a bug in 4RDF (4Suite-0.10.2).
Parsing the following RDF

<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
         xmlns:ns="http://my/ns#">
  <ns:item rdf:ID="this">
    <ns:prop>
      <ns:item>
        <ns:prop rdf:resource="http://foo/"/>
      </ns:item>
    </ns:prop>
  </ns:item>
</rdf:RDF>

results in these statements (p,s,o):

rdf:type, http://test#this, ns:item
rdf:type, http://test#anon-1, ns:prop
rdf:type, http://test#anon-2, ns:item
ns:prop,  http://test#anon-2, http://foo/
ns:item,  http://test#anon-1, http://test#anon-2
ns:prop,  http://test#this, http://test#anon-1

but correct would IMHO be something like this:

rdf:type, http://test#this, ns:item
rdf:type, http://test#anon-2, ns:item
ns:prop,  http://test#anon-2, http://foo/
ns:prop,  http://test#this, http://test#anon-2

4RDF somehow interprets the second 'item' as
propertyElt, but it is a typedNode.

Regards,

Joern v. Kattchee

----------------------------------------------------------------------

You can respond by visiting: 
http://sourceforge.net/tracker/?func=detail&atid=106473&aid=418323&group_id=6473