|
When selecting GML3.2 from the list of available WFS preview formats a missformated URL is created that throws an error.
Selecting GML3.2 for tiger_roads creates the following URL: http://localhost:8080/geoserver/tiger/ows?service=WFS&version=1.0.0&request=GetFeature&typeName=tiger:tiger_roads&maxFeatures=50&outputFormat=application/gml+xml;%20version=3.2
And this gives the following error:
<ServiceExceptionReport xmlns="http://www.opengis.net/ogc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2.0" xsi:schemaLocation="http://www.opengis.net/ogc http://schemas.opengis.net/wfs/1.0.0/OGC-exception.xsd">
<ServiceException code="InvalidParameterValue" locator="outputFormat">
Failed to find response for output format application/gml xml; version=3.2
</ServiceException>
</ServiceExceptionReport>
So, the error seems to be the + in gml+xml that is not encoded thus transformed by Chrome (or webserver?) into a space. If the '+' would be encoded as %2B it works as expected.
|