Book a Demo

Author Topic: Importing RDF XML  (Read 3293 times)

herman2014

  • EA Novice
  • *
  • Posts: 4
  • Karma: +0/-0
    • View Profile
Importing RDF XML
« on: November 12, 2014, 11:30:42 am »
I tried importing the following RDF (found at http://www.w3schools.com/webservices/ws_rdf_example.asp) but the only thing that EA created was a package.  There isn't much documentation I can find on ODM so I don't have much to go on as to why this doesn't import.  Any thoughts?

<?xml version="1.0"?>

<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cd="http://www.recshop.fake/cd#">

<rdf:Description
rdf:about="http://www.recshop.fake/cd/Empire Burlesque">
  <cd:artist>Bob Dylan</cd:artist>
  <cd:country>USA</cd:country>
  <cd:company>Columbia</cd:company>
  <cd:price>10.90</cd:price>
  <cd:year>1985</cd:year>
</rdf:Description>

<rdf:Description
rdf:about="http://www.recshop.fake/cd/Hide your heart">
  <cd:artist>Bonnie Tyler</cd:artist>
  <cd:country>UK</cd:country>
  <cd:company>CBS Records</cd:company>
  <cd:price>9.90</cd:price>
  <cd:year>1988</cd:year>
</rdf:Description>
</rdf:RDF>