<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Tahoma
}
--></style></head>
<body class='hmmessage'><div dir='ltr'>
Hello,<br><br>I removed the prefix tows and I still have the same issue. The proxy I think is configured correctly<br>OpenLayers.ProxyHost = "/cgi-bin/proxy.cgi?url=";<br>because the URL: http://localhost:81/cgi-bin/proxy.cgi open in browser gets me to the OpenLayers home page (I think this is the way how I can test it in Windows),<br>and I use python 2.72.<br><br>I tried almost everything in that small code of JS which configures the WFS layer. The table in PostGIS has the SRS 32634 (checked even from QGIS) and made the code almost the same like in the example at http://mapserver.org/trunk/tinyows/openlayershowtotransactional.html<br>I just don't know what might be still wrong in my case. Can you please suggest me any other configuration or something else that might cause my problem?<br><br>I repeat that I am almost completely new in Apache and I have had some previous experience in OL and MS4W. The GetFeature query from the browser returns all the data of the table in GML format, so I don't think it might be an issue with the database. I have a layer (WMS) that returns the right data but the WFS just doesn't return any features at all. The code that I have at the moment to configure the WFS layer is like this:<br><br><font style="" face="Courier New">&nbsp;&nbsp;&nbsp; wfs = new OpenLayers.Layer.Vector("GLP_Zone", {</font><font style="" face="Courier New"><br></font><font style="" face="Courier New">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //styleMap: styles,</font><font style="" face="Courier New"><br></font><font style="" face="Courier New">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; strategies: [new OpenLayers.Strategy.BBOX(), saveStrategy],</font><font style="" face="Courier New"><br></font><font style="" face="Courier New">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; projection: new OpenLayers.Projection("EPSG:32634"),</font><font style="" face="Courier New"><br></font><font style="" face="Courier New">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //maxExtent: new OpenLayers.Bounds(372272, 4512142, 381165, 4505108),&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </font><font style="" face="Courier New"><br></font><font style="" face="Courier New">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; protocol: new OpenLayers.Protocol.WFS({</font><font style="" face="Courier New"><br></font><font style="" face="Courier New">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; version: "1.1.0",</font><font style="" face="Courier New"><br></font><font style="" face="Courier New">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; srsName: "EPSG:32634",</font><font style="" face="Courier New"><br></font><font style="" face="Courier New">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; url: "http://127.0.0.1:81/cgi-bin/tinyows",</font><font style="" face="Courier New"><br></font><font style="" face="Courier New">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; featureNS: "http://www.tinyows.org/",</font><font style="" face="Courier New"><br></font><font style="" face="Courier New">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; featureType: "GLP_Zone",</font><font style="" face="Courier New"><br></font><font style="" face="Courier New">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //featurePrefix: "tows",</font><font style="" face="Courier New"><br></font><font style="" face="Courier New">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; geometryName: "the_geom",</font><font style="" face="Courier New"><br></font><font style="" face="Courier New">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; schema: "http://127.0.0.1:81/cgi-bin/tinyows?service=wfs&amp;request=DescribeFeatureType&amp;version=1.1.0&amp;typename=tows:GLP_Zone"</font><font style="" face="Courier New"><br></font><font style="" face="Courier New">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; })</font><font style="" face="Courier New"><br></font><font style="" face="Courier New">&nbsp;&nbsp;&nbsp; });</font><font style="" face="Courier New"><br></font><br>and the xml file to configure the TinyOWS (config.xml) is like this<br><br><font style="" face="Courier New">&lt;tinyows online_resource="http://127.0.0.1:81/cgi-bin/tinyows.exe"</font><font style="" face="Courier New"><br></font><font style="" face="Courier New">&nbsp; schema_dir="http://127.0.0.1:81/tinyows/schema/"</font><font style="" face="Courier New"><br></font><font style="" face="Courier New">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; log="/tmp/tinyows.log"</font><font style="" face="Courier New"><br></font><font style="" face="Courier New">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; log_level="1"&gt;</font><font style="" face="Courier New"><br></font><font style="" face="Courier New">&nbsp; &lt;pg host="localhost" user="postgres" password="postgres" dbname="db1" port="5432"/&gt;</font><font style="" face="Courier New"><br></font><font style="" face="Courier New">&nbsp; &lt;metadata name="TinyOWS Server"</font><font style="" face="Courier New"><br></font><font style="" face="Courier New">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; title="Testing Olives" /&gt;</font><font style="" face="Courier New"><br></font><font style="" face="Courier New"><br></font><font style="" face="Courier New">&nbsp; &lt;layer retrievable="1"</font><font style="" face="Courier New"><br></font><font style="" face="Courier New">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; writable="1"</font><font style="" face="Courier New"><br></font><font style="" face="Courier New">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ns_prefix="tows"</font><font style="" face="Courier New"><br></font><font style="" face="Courier New">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ns_uri="http://www.tinyows.org/"</font><font style="" face="Courier New"><br></font><font style="" face="Courier New">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; srid="32634"</font><font style="" face="Courier New"><br></font><font style="" face="Courier New">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; schema="public"</font><font style="" face="Courier New"><br></font><font style="" face="Courier New">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; name="GLP_Zone"</font><font style="" face="Courier New"><br></font><font style="" face="Courier New">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; title="GLP_Zone" /&gt;</font><font style="" face="Courier New"><br></font><font style="" face="Courier New">&lt;/tinyows&gt;</font><br><br>I have tried to change the ns_uri (and the featureNS) to <font style="" face="Courier New">http://127.0.0.1/</font> but with no results<br><br>Thanks a lot for further help!<br><br><div><div id="SkyDrivePlaceholder"></div><hr id="stopSpelling">From: erndal02@hotmail.com<br>To: tinyows-dev@lists.maptools.org<br>Date: Wed, 11 Apr 2012 08:38:56 +0200<br>Subject: Re: [TinyOWS-dev] Problems with showing a WFS feature with OpenLayers<br><br>

<meta http-equiv="Content-Type" content="text/html; charset=unicode">
<meta name="Generator" content="Microsoft SafeHTML">
<style>
.ExternalClass .ecxhmmessage P
{padding:0px;}
.ExternalClass body.ecxhmmessage
{font-size:10pt;font-family:Tahoma;}

</style>
<div dir="ltr">
Olivier,<br><br>First of all I would like to thank you for the fast answer. <br>I have tried it even without the prefix and I based my code mainly in the sample that you provided too. I am not sure about the featureNS what should I put there, and why is it needed. Maybe the mistake is there. Anyway I tried to comment out the featureNS but still no results. At the moment I cannot make any further trials since unfortunately I cannot connect to the pc that I am configuring the map.<br>Don't know where else might be the problem.<br><br>Thanks<br><br><div><div id="ecxSkyDrivePlaceholder"></div><hr id="ecxstopSpelling">From: olivier.courtin@oslandia.com<br>Date: Wed, 11 Apr 2012 08:25:26 +0200<br>To: tinyows-dev@lists.maptools.org<br>Subject: Re: [TinyOWS-dev] Problems with showing a WFS feature with        OpenLayers<br><br>

<div><div>On Apr 11, 2012, at 8:17 AM, Ermond Parllaku wrote:</div><div><br></div><div>Ermond,</div><div><br></div><blockquote><span class="ecxApple-style-span" style="border-collapse:separate;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:normal;orphans:2;text-align:-webkit-auto;text-indent:0px;text-transform:none;white-space:normal;widows:2;word-spacing:0px;font-size:medium"><div class="ecxhmmessage" style="font-size:10pt"><div dir="ltr"><font class="ecxApple-style-span" face="Tahoma">&nbsp;So I guess the service is configured correctly.</font></div></div></span></blockquote><div><br></div><div>Related to your description it is.</div><br><blockquote><span class="ecxApple-style-span" style="border-collapse:separate;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:normal;orphans:2;text-align:-webkit-auto;text-indent:0px;text-transform:none;white-space:normal;widows:2;word-spacing:0px;font-size:medium"><div class="ecxhmmessage" style="font-size:10pt"><div dir="ltr"><font class="ecxApple-style-span" face="Tahoma"> It only should be a matter of JS code I have added or maybe any issues with the versions I am using…</font><br></div></div></span></blockquote><div><br></div><div>JS indeed is the problem.</div><br><blockquote><span class="ecxApple-style-span" style="font-family:'Courier New';font-size:13px">&nbsp; &nbsp; &nbsp; geometryName: "tows:the_geom",</span></blockquote><div><br></div><div>Did you try without tows prefix there ?</div><div><br></div><div><br></div><div><br></div><div><br></div><div>Did you consider using this tutorial as an example ?</div><div><a href="http://mapserver.org/trunk/tinyows/openlayershowtotransactional.html" target="_blank">http://mapserver.org/trunk/tinyows/openlayershowtotransactional.html</a></div><div><span class="ecxApple-style-span" style="font-family:Tahoma;font-size:13px">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</span></div></div><div>
<span class="ecxApple-style-span" style="border-collapse:separate;color:rgb(0, 0, 0);font-family:Helvetica;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:normal;orphans:2;text-align:-webkit-auto;text-indent:0px;text-transform:none;white-space:normal;widows:2;word-spacing:0px;font-size:medium"><span class="ecxApple-style-span" style="border-collapse:separate;color:rgb(0, 0, 0);font-family:Helvetica;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:normal;orphans:2;text-align:-webkit-auto;text-indent:0px;text-transform:none;white-space:normal;widows:2;word-spacing:0px;font-size:medium"><div style="word-wrap:break-word"><div>--</div><div>Olivier Courtin</div><div>Oslandia</div><div>+33 977 217 501</div><div><br></div><div><br></div></div></span><br class="ecxApple-interchange-newline"></span><br class="ecxApple-interchange-newline">
</div>
<br><br>_______________________________________________
TinyOWS-dev mailing list
TinyOWS-dev@lists.maptools.org
http://lists.maptools.org/mailman/listinfo/tinyows-dev</div>                                               </div>
<br>_______________________________________________
TinyOWS-dev mailing list
TinyOWS-dev@lists.maptools.org
http://lists.maptools.org/mailman/listinfo/tinyows-dev</div>                                               </div></body>
</html>