- From: Stefan Kokkelink <skokkeli@mathematik.uni-osnabrueck.de>
- Date: Fri, 13 Jul 2001 10:56:41 +0200
- To: Britta Ladwig-Attinger <BLadwig@t-online.de>
- CC: www-rdf-interest@w3.org
Britta Ladwig-Attinger wrote: > ... > <rdf:RDF> > <rdf:Description about="http://www.w3.org/Home/Lassila"> > <s:Name>"Name of 1st input field</s:Name> > <s:Value>"Value of 1st input field</s:Value> > <s:Name>"Name of 2nd input field</s:Name> > <s:Value>"Value of 2nd input field</s:Value> > etc. > > </rdf:Description> > </rdf:RDF> There is no ordering on the properties defined in RDF. Try someting like this: <rdf:RDF> <rdf:Description about="http://www.w3.org/Home/Lassila"> <dcq:hasPart> <rdf:Bag> <rdf:li parseType="Resource"> <s:name>name1</sname> <s:value>value1</s:value> </rdf:li> .... <rdf:Bag> </dcq:hasPart> </rdf:Description> </rdf:RDF> this is only one possible way to decsribe the data ... regards, stefan
Received on Friday, 13 July 2001 04:58:20 UTC