hello!

I have a problem with the configuration of tinyows. I have the following settings in my xml file:

<tinyows online_resource="localhost/cgi-bin/tinyows.exe"
       schema_dir="C:\ms4w\apps\tinyows\schema\">
<pg host="localhost" user="postgres" password="postgres" dbname="watergis" port="5432"/>
<metadata name="TinyOWS Server"
          title="TinyOWS Server - WFS-T Frida Service" />
<contact name="TinyOWS Server"
         site="http://www.tinyows.org/";
         email="[email protected]" />
<layer retrievable="1"
       writable="1"
       ns_prefix="water"
       ns_uri="http://localhost/";
       name="pipeline_segment"
       title="pipeline_segment"
       table= "pipeline_segment"
       srid="32740"
       schema="water"/>
</tinyows>

if I enter tinyows --check I get the following back:

C:\ms4w\Apache\cgi-bin>tinyows --check
TinyOWS version:   1.0.0rc3
FCGI support:      Yes
Config File Path:  C:\ms4w\apps\tinyows\tinyows.xml (TinyOWS XML)
PostGIS Version:   2.0.0
PostGIS dsn: host=localhost user=postgres password=postgres dbname=watergi
s port=5432
Output Encoding:   UTF-8
Database Encoding: UTF8
Schema dir:        C:\ms4w\apps\tinyows\schema\
Display bbox:      Yes
Estimated extent:  No
Check schema:      Yes
Check valid geoms: Yes
Available layers:
 - water.pipeline_segment (32740) -> water.pipeline_segment [RW]


which looks acutally quite good. But when i am trying to include that into my openlayer map - I always get 0 features back! Here the code for openlayers:

wfs = new OpenLayers.Layer.Vector("Editable Features", {
        strategies: [new OpenLayers.Strategy.BBOX(), saveStrategy],
        projection: new OpenLayers.Projection("EPSG:31467"),
        protocol: new OpenLayers.Protocol.WFS({
              version: "1.1.0",
              srsName: "EPSG:32740",
              url: "http://127.0.0.1:8000/redir/cgi-bin/tinyows.exe";,
              featureNS :  "tows",
              featureType: "pipeline_segment",
              geometryName: "geometry",
schema: "http://127.0.0.1:8000/redir/cgi-bin/tinyows.exe?service=wfs&request=DescribeFeatureType&version=1.1.0&typename=water:pipeline_segment";
        })
});

Someone an idea?
_______________________________________________
mapserver-users mailing list
[email protected]
http://lists.osgeo.org/mailman/listinfo/mapserver-users

Reply via email to