Task #3800
Updated by Rob Nahf over 11 years ago
In your documents and isDocumentedBy predicates, you have the object in the element body. That's throwing parsing exceptions. Rather, it should go as the rdf:resource attribute of the predicate xml construct.
so instead of:
<pre>
<cito:isDocumentedBy>
http://129.24.63.115/apps/dataone/v1/object/5760e5ef-efef-4c97-b393-79850d1b67b3</cito:isDocumentedBy>
</pre>
you'll need:
<pre>
<cito:isDocumentedBy
rdf:resource="http://129.24.63.115/apps/dataone/v1/object/5760e5ef-efef-4c97-b393-79850d1b67b3"/>
</pre>