Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[udig-devel] UDig 0.9.1 + GeoServer 1.3.0 battle of the betas

The latest uDig / Geoserver releases don't appear to play well together for WFS. WMS works though...

Here is a sample from http://www.refractions.net:8080/geoserver/wfs/TestWfsPost (aka something that works with udig):

<wfs:FeatureCollection xsi:schemaLocation="http://www.refractions.net http://www.refractions.net:8080/geoserver/wfs/DescribeFeatureType?typeName=gd:roads http://www.opengis.net/wfs http://www.refractions.net:8080/geoserver/data/capabilities/wfs/1.0.0/WFS-basic.xsd";>
    <gml:boundedBy>
    <gml:Box srsName="http://www.opengis.net/gml/srs/epsg.xml#26910";>
<gml:coordinates decimal="." cs="," ts=" ">556627.87,5233002.61 566208.16,5246984.76</gml:coordinates>
</gml:Box>
</gml:boundedBy>
    <gml:featureMember>
    <gd:roads fid="roads.3930">
<gd:line>LE01_4073</gd:line>
<gd:line_obrp>LE</gd:line_obrp>
<gd:pidl>PC01_770</gd:pidl>
<gd:pidr>PC01_745</gd:pidr>

And a sample from the latest GeoServer 1.2.3 beta ..
The request (sniffed off the wire as made by uDig):

<?xml version="1.0" encoding="UTF-8"?>
<GetFeature xmlns="http://www.opengis.net/wfs"; xmlns:gml="http://www.opengis.net/gml"; xmlns:ogc="http://www.opengis.net/ ogc" version="1.0.0" service="WFS" outputFormat="GML2"><Query typeName="topp:tasmania_water_bodies"><ogc:PropertyName>the_geom</ogc:PropertyName>
<ogc:Filter><ogc:BBOX><ogc:PropertyName>the_geom</ogc:PropertyName>
<gml:Box><gml:coordinates decimal="." cs="," ts=" ">147.219696,-43.031944 148.3528709089347,-41.775558</gml:coordinates>
</gml:Box>
</ogc:BBOX>
</ogc:Filter>
</Query>
</GetFeature>

And the response - which did not display on udig. (xml gernated from http://localhost:8080/geoserver/wfs/TestWfsPost)

<wfs:FeatureCollection xsi:schemaLocation="http://www.openplans.org/topp http://localhost:8080/geoserver/wfs/DescribeFeatureType?typeName=topp:tasmania_water_bodies http://www.opengis.net/wfs http://localhost:8080/geoserver/data/capabilities/wfs/1.0.0/WFS-basic.xsd";>
    <gml:boundedBy>
    <gml:Box srsName="http://www.opengis.net/gml/srs/epsg.xml#4326";>
<gml:coordinates decimal="." cs="," ts=" ">147.092194,-42.203056 147.219696,-42.060829</gml:coordinates>
</gml:Box>
</gml:boundedBy>
    <gml:featureMember>
    <gml:tasmania_water_bodies fid="tasmania_water_bodies.6">
    <gml:the_geom>
<gml:MultiPolygon srsName="http://www.opengis.net/gml/srs/epsg.xml#4326";>
    <gml:polygonMember>
    <gml:Polygon>
    <gml:outerBoundaryIs>
    <gml:LinearRing>
    <gml:coordinates decimal="." cs="," ts=" ">
147.149719,-42.203056 147.142212,-42.201668 147.131348,-42.195831 147.127747,-42.191666 147.125244,-42.186111 147.12439,-42.180832 147.126343,-42.175278 147.132172,-42.165833 147.136108,-42.16111 147.137207,-42.155556 147.135529,-42.149994 147.12912,-42.14167 147.126617,-42.136948 147.128845,-42.124443 147.12912,-42.117775 147.122742,-42.115555 147.11441,-42.116112 147.101349,-42.120552 147.093842,-42.119164 147.092194,-42.114449 147.093292,-42.108337 147.097198,-42.097221 147.103302,-42.080833 147.108307,-42.07 147.112183,-42.066666 147.117737,-42.063889 147.124115,-42.061943 147.131622,-42.060829 147.138031,-42.063614 147.140808,-42.06778 147.145264,-42.071945 147.150818,-42.074173 147.159973,-42.074173 147.16748,-42.073059 147.180542,-42.069725 147.188873,-42.069168 147.19693,-42.07 147.209686,-42.075005 147.216919,-42.082779 147.219696,-42.087502 147.219421,-42.094444 147.216644,-42.099167 147.211914,-42.103333 147.190521,-42.106949 147.185791,-42.110283 147.182739,-42.115005 147.180542,-42.127495 147.180267,-42.134445 147.18219,-42.140556 147.182739,-42.146111 147.187744,-42.16861 147.188568,-42.175003 147.187195,-42.187775 147.184143,-42.192772 147.180542,-42.196663 147.169128,-42.201942 147.149719,-42.203056
</gml:coordinates>
</gml:LinearRing>
</gml:outerBoundaryIs>
</gml:Polygon>
</gml:polygonMember>
</gml:MultiPolygon>
</gml:the_geom>
</gml:tasmania_water_bodies>
</gml:featureMember>
</wfs:FeatureCollection>





Back to the top