I have a problem in using '<' '>' with the sparql data source:
<sparql>
<param name = "query" value = "prefix dc: <http://purl.org/dc/elements/1.1/>..." />
...
</sparql>
This isn't valid in XML and in fact it yields an error. HTML-Escaping fixes it (i.e., <>), but very uncomfortable, even using search/replace. A quick solution might be that param value can be specified via child text node, i.e., <param name = "query">VALUE</param>.
I have a problem in using '<' '>' with the sparql data source:
This isn't valid in XML and in fact it yields an error. HTML-Escaping fixes it (i.e.,
<
>
), but very uncomfortable, even using search/replace. A quick solution might be that param value can be specified via child text node, i.e.,<param name = "query">VALUE</param>
.