You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The evaluation uses N3 format to push new triplets to the triple store. My experimental pipeline produces blank nodes which after the conversion to N3 look like this:
Although this syntax is valid according to several translators/validators that I tried online, Virtuoso (v7.2) doesn't like it. It fails with the following error message:
SP029: TURTLE RDF loader, line 8: Missing predicate and object between top-level blank node subject and a dot processed pending to here.
Switching to RDF/XML format here fixed the problem for me. The triplets were successfully pushed to the triple store.
I can make a pull request with this change. But maybe there is a reason for why N3 is used and this change could break something.
The text was updated successfully, but these errors were encountered:
Well that does work indeed, but the conversion is done by Apache Jena and this is how Apache Jena represents blank nodes in N3. Which is apparently incompatible with how Virtuoso understands blank nodes in N3. Judging from the Apache Jena API, I only get to choose the output language, not its "dialect".
The evaluation uses N3 format to push new triplets to the triple store. My experimental pipeline produces blank nodes which after the conversion to N3 look like this:
Although this syntax is valid according to several translators/validators that I tried online, Virtuoso (v7.2) doesn't like it. It fails with the following error message:
Switching to RDF/XML format here fixed the problem for me. The triplets were successfully pushed to the triple store.
I can make a pull request with this change. But maybe there is a reason for why N3 is used and this change could break something.
The text was updated successfully, but these errors were encountered: