Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[geomesa-users] Geoserver WFS from QGIS

Hi,

Are there any tricks to get WFS working in Geoserver?  QGIS complains about "Error when parsing GetFeature response : Error: unbound prefix on line 1, column 741” which appears to be the null namespace on the <null:example-csv gml:id="23623”> element.  I’ve seen some chatter that this might be an issue with Geoserver workspaces but haven’t had any success.

<?xml version="1.0" encoding="UTF-8"?>
  <wfs:member>
    <null:example-csv gml:id="23623">
      <gml:name>Harry</gml:name>
      <fid>23623</fid>
      <age>20</age>
      <lastseen>2015-05-06T00:00:00.000Z</lastseen>
      <geom>
        <gml:Point srsName="urn:ogc:def:crs:EPSG::4326" srsDimension="2">
          <gml:pos>23 -100.236523</gml:pos>
        </gml:Point>
      </geom>
    </null:example-csv>
  ...
</wfs:FeatureCollection>

Back to the top