[Geoserver-devel] WCS Demo Requests wrong on 1.5

The sample WCS GetCapabilities request returns an error:

<?xml version="1.0" ?>
<ServiceExceptionReport
   version="1.2.0"
   xmlns="http://www.opengis.net/ogc&quot;
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance&quot;
   xsi:schemaLocation="http://www.opengis.net/ogc http://localhost:8080/geoserver/schemas/wcs/1.0.0/OGC-exception.xsd&quot;&gt;
   <ServiceException>
      VERSION parameter is wrong. </ServiceException>
</ServiceExceptionReport>

Jody Garnett ha scritto:

The sample WCS GetCapabilities request returns an error:

<?xml version="1.0" ?>
<ServiceExceptionReport
   version="1.2.0"
   xmlns="http://www.opengis.net/ogc&quot;
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance&quot;
   xsi:schemaLocation="http://www.opengis.net/ogc http://localhost:8080/geoserver/schemas/wcs/1.0.0/OGC-exception.xsd&quot;&gt;
   <ServiceException>
      VERSION parameter is wrong. </ServiceException>
</ServiceExceptionReport>

Funny, I'm plaing with geoserver 1.5.x and got no such issues?
Cheers
Andrea

I can reproduce this, from the Sample requests list.

Alex

On 1/11/07, Andrea Aime <aaime@anonymised.com> wrote:

Jody Garnett ha scritto:
> The sample WCS GetCapabilities request returns an error:
>> <?xml version="1.0" ?>
>> <ServiceExceptionReport
>> version="1.2.0"
>> xmlns="http://www.opengis.net/ogc&quot;
>> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance&quot;
>> xsi:schemaLocation="http://www.opengis.net/ogc
>> http://localhost:8080/geoserver/schemas/wcs/1.0.0/OGC-exception.xsd&quot;&gt;
>> <ServiceException>
>> VERSION parameter is wrong. </ServiceException>
>> </ServiceExceptionReport>

Funny, I'm plaing with geoserver 1.5.x and got no such issues?
Cheers
Andrea

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Geoserver-devel mailing list
Geoserver-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-devel

Alexander Petkov ha scritto:

I can reproduce this, from the Sample requests list.

Doh, you're both right, the sample request misses the
version parameter in my case:

<GetCapabilities
   service="WCS"
   xmlns="http://www.opengis.net/wcs&quot;
   xmlns:nurc="http://www.nurc.nato.int"
   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/wcsCapabilities.xsd&quot;/&gt;

Bleah, fixing it requires a ton of time, there are quite
a bit of zip files to change.
This is one of the places where a modular UI would be
a great benefit, we can keep the sample request in the
classpath and have each module provide its own and...
hum....!!!! in fact nothing prevents to do so now,
there's not really need for modular UI, just have
each module store sample requests in well known places
in the jars.

Cheers
Andrea