<div dir="ltr"><div>Hello,<br><br>Only a clue but because it's  XML, you have to escape your ampersands: so & become &amp;<br>and for a full example<br><br> "<a href="http://10.10.4.41/cgi-bin/test.cgi?SERVICE=WCS&REQUEST=GetCoverage&IDENTIFIER=testdata_raw&VERSION=1.1.0">http://10.10.4.41/cgi-bin/test.cgi?SERVICE=WCS&REQUEST=GetCoverage&IDENTIFIER=testdata_raw&VERSION=1.1.0</a>"<br>

become<br> "<a href="http://10.10.4.41/cgi-bin/test.cgi?SERVICE=WCS&amp;REQUEST=GetCoverage&amp;IDENTIFIER=testdata_raw&amp;VERSION=1.1.0">http://10.10.4.41/cgi-bin/test.cgi?SERVICE=WCS&amp;REQUEST=GetCoverage&amp;IDENTIFIER=testdata_raw&amp;VERSION=1.1.0</a>"<br>

<br></div><div>You can also try replacing & with hexadecimal notation &#038;<br><br>Regards<br><br>Thomas Gratier</div></div>