[Geoserver-devel] Sample GetCoverage request does not validate

Hi,
the sample GetCoverage in demo does not conform to the WCS
schema. The following does:

<!-- Performs a get coverage. Feel free to play with the elements, -->
<!-- to get different results. -->
<GetCoverage service="WCS" version="1.0.0"
   xmlns="http://www.opengis.net/wcs&quot;
   xmlns:nurc="http://www.nurc.nato.int"
   xmlns:ogc="http://www.opengis.net/ogc&quot;
   xmlns:gml="http://www.opengis.net/gml&quot;
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance&quot;
   xsi:schemaLocation="http://www.opengis.net/wcs http://schemas.opengis.net/wcs/1.0.0/getCoverage.xsd&quot;&gt;
   <sourceCoverage>nurc:Arc_Sample</sourceCoverage>
   <domainSubset>
     <spatialSubset>
       <gml:Envelope srsName="EPSG:4326">
         <gml:pos>9.420000076293944 42.20000076293945</gml:pos>
         <gml:pos>11.819999694824217 43.90000049273173</gml:pos>
       </gml:Envelope>
       <gml:Grid dimension="2" srsName="EPSG:4326">
         <gml:limits>
           <gml:GridEnvelope>
             <gml:low>0 0</gml:low>
             <gml:high>120 85</gml:high>
           </gml:GridEnvelope>
         </gml:limits>
         <gml:axisName>Band</gml:axisName>
       </gml:Grid>
     </spatialSubset>
   </domainSubset>
   <rangeSubset>
     <axisSubset name="Band">
       <singleValue>1</singleValue>
     </axisSubset>
   </rangeSubset>
   <output>
     <crs>EPSG:4326</crs>
     <format>TIFF</format>
   </output>
</GetCoverage>

Cheers
Andrea