And I&#39;ve got another problem, it seems.&nbsp; I&#39;ve inserted some test spatial data into postGIS and had it output in featureserver in WFS format.&nbsp; Now, I&#39;m moving on to my real data.&nbsp; I&#39;m using counties as my features, with emissions associated with each county.&nbsp; I have the emissions tied to the state county FIPS code, and then I brought in a county shapefile for the geometries.&nbsp; Using shp2pgsql I&#39;ve parsed out the geometry part. (SRID=4269;01060000 etc., etc., etc.) so that I can just insert this column into my original table. (UPDATE table SET the_geom=&#39;SRID=4269;etc.,etc.&#39;) WHERE stateCountyFIPS=&#39;xxxxx&#39;);<br>
<br>I hope that came out clear enough.<br><br>After overcoming a restraint (oops counties are multipolygons, not just polygons), the data was inserted correctly into postgis and I got no errors.<br><br>When viewing the WFS from featureserver, though, I get:<br>
<br><pre>An error occurred: expected string or buffer<br>  File &quot;/opt/lampp/cgi-bin/featureserver2/FeatureServer/Server.py&quot;, line 281, in cgiHandler<br>    format, content = service.dispatchRequest( params, path_info, host, post_data, request_method, accepts )<br>
  File &quot;/opt/lampp/cgi-bin/featureserver2/FeatureServer/Server.py&quot;, line 145, in dispatchRequest<br>    result = method(action)<br>  File &quot;/opt/lampp/cgi-bin/featureserver2/FeatureServer/DataSource/PostGIS.py&quot;, line 208, in select<br>
    geom  = self.from_wkt(props[&#39;fs_text_geom&#39;])<br>  File &quot;/opt/lampp/cgi-bin/featureserver2/FeatureServer/DataSource/PostGIS.py&quot;, line 99, in from_wkt<br>    for line in self.wkt_linestring_match.findall(geom):</pre>
<br><br>No other errors in apache&#39;s error_log.&nbsp; I wonder if this is because my geometry came out wrong?&nbsp; Anyone have any ideas what this could be?&nbsp; Thanks!<br>-Ed<br><br>