Thanks for the reply.<br><br>I changed to 1.1.0, but I am still having problems with projections.<br><br>The BBOX filter of the request is being built with weird numbers on it:<br><br>&lt;ogc:BBOX&gt;&lt;ogc:PropertyName&gt;GEOLOC&lt;/ogc:PropertyName&gt;&lt;gml:Envelope xmlns:gml=&quot;<a href="http://www.opengis.net/gml">http://www.opengis.net/gml</a>&quot; srsName=&quot;EPSG:29193&quot;&gt;&lt;gml:lowerCorner&gt;-4987936.2379319 -2307634.0730985&lt;/gml:lowerCorner&gt;&lt;gml:upperCorner&gt;-4797149.4153663 -2213769.4023813&lt;/gml:upperCorner&gt;&lt;/gml:Envelope&gt;&lt;/ogc:BBOX&gt;<br>

<br>Those numbers don&#39;t make any sense in EPSG:29193 (<a href="http://spatialreference.org/ref/epsg/29193/">http://spatialreference.org/ref/epsg/29193/</a>)<br>The bounds should be limited to: 166020.2387, 7087605.5418, 833979.7613, 10000000.0000, and I am seeing some negative numbers.<br>

<br>I also changed the displayProjection on the map to EPSG:29193 and those weird numbers are confirmed by OpenLayers.Control.MousePosition.<br><br>My guess is that there is some problem with the reprojection routine from 900913 to 29193. I am also guessing this may be because 29193 is limited to a region of the globe while 900913 is a world-wide projection. Does it make sense? I don&#39;t know much about cartography and projections and I didn&#39;t dig in OpenLayers code yet.<br>

<br>Do you have any other hint for me?<br><br><div class="gmail_quote">On Mon, Nov 9, 2009 at 6:40 PM, Andreas Hocevar <span dir="ltr">&lt;<a href="mailto:ahocevar@opengeo.org">ahocevar@opengeo.org</a>&gt;</span> wrote:<br>

<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Hi,<br>
<br>
WFS 1.0.0 does not support on-the-fly reprojection. You have to use WFS<br>
1.1.0, which is e.g. supported by GeoServer. And you have to specify the<br>
version on the protocol:<br>
<div class="im"><br>
Pedro Baracho wrote:<br>
&gt; var layer = new OpenLayers.Layer.Vector(&quot;WFS&quot;, {<br>
&gt;                     strategies: [new OpenLayers.Strategy.BBOX(),<br>
&gt; saveStrategy],<br>
&gt;                     protocol: new OpenLayers.Protocol.WFS({<br>
</div>                            version: &quot;1.1.0&quot;,<br>
<div class="im">&gt;                         url:  &quot;<a href="http://localhost:8080/geoserver/wfs" target="_blank">http://localhost:8080/geoserver/wfs</a>&quot;,<br>
&gt;                         featureType: &quot;Regional&quot;,<br>
&gt;                         featureNS: &quot;<a href="http://prodabel1062.pbh:8080/avis" target="_blank">http://prodabel1062.pbh:8080/avis</a>&quot;,<br>
&gt;                         geometryName: &quot;GEOLOC&quot;,<br>
&gt;                         srsName: &quot;EPSG:29193&quot;<br>
&gt;                     }),<br>
&gt;                     projection: new OpenLayers.Projection(&quot;EPSG:29193&quot;)<br>
&gt;             });<br>
&gt;<br>
<br>
<br>
</div>Regards,<br>
Andreas.<br>
<font color="#888888"><br>
--<br>
Andreas Hocevar<br>
OpenGeo - <a href="http://opengeo.org/" target="_blank">http://opengeo.org/</a><br>
Expert service straight from the developers.<br>
<br>
</font></blockquote></div><br>