I'm having some trouble with Sesame 2.7. Suppose I have the following RDF document:
<rdf:RDF xmlns:arq="http://example.com/vocab.rdf#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
<arq:Photo rdf:about="http://example.com/photo_2230.rdf">
<arq:photoName rdf:datatype="http://www.w3.org/2000/01/rdf-schema#Literal">Testing</arq:photoName>
<!-- More properties -->
...
</arq:Photo>
When I submit it to Sesame, the following error appears:
'Testing' was not recognised, and could not be verified, with datatype http://www.w3.org/2000/01/rdf-schema#Literal
It was working fine with the previous Sesame version (version 2.6.9). But now, after the update, Sesame 2.7 does not recognize it and I am not finding why. Could someone have a guess of what is going on?
Thanks!