WCS 1.1.1 GetCapabilities requests like
http://cida.usgs.gov/nwc/geoserver/ows?service=wcs&version=1.1.1&request=GetCapabilities
return
xmlns:wcs="http://www.opengis.net/wcs/1.1.1"
but that doesn’t exist.
It should be returning
xmlns:wcs="http://www.opengis.net/wcs/1.1"
I think MapServer is doing this correctly, if that’s helpful.
Here’s an example WCS 1.1.1 GetCapabilities from a Mapserver:
http://demo.mapserver.org/cgi-bin/wcs?SERVICE=WCS&VERSION=1.1.1&REQUEST=GetCapabilities
which returns
<Capabilities xmlns="http://www.opengis.net/wcs/1.1" xmlns:ows="http://www.opengis.net/ows/1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ogc="http://www.opengis.net/ogc" version="1.1.1" xsi:schemaLocation="http://www.opengis.net/wcs/1.1 [http://schemas.opengis.net/wcs/1.1/wcsGetCapabilities.xsd](http://schemas.opengis.net/wcs/1.1/wcsGetCapabilities.xsd) [http://www.opengis.net/ows/1.1](http://www.opengis.net/ows/1.1) [http://schemas.opengis.net/ows/1.1.0/owsAll.xsd](http://schemas.opengis.net/ows/1.1.0/owsAll.xsd)">
|