Okay, I finally, finally got gdal built with xerces support.<br><br>[root@niceguy ogr]# ./ogrinfo wfs.gml<br>Had to open data source read-only.<br>INFO: Open of `wfs.gml&#39;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; using driver `GML&#39; successful.<br>
1: GIS<br><br><br>Tada, so I check my featureserver request and I get:<br><pre>An error occurred: libxerces-c.so.27: cannot open shared object file: No such file or directory<br>  File &quot;./FeatureServer/Server.py&quot;, line 200, in cgiHandler
<br>    service = Server.load(*cfgfiles)<br>  File &quot;./FeatureServer/Server.py&quot;, line 44, in _load<br>    datasources[section] = cls.loadFromSection(<br>  File &quot;./FeatureServer/Server.py&quot;, line 22, in _loadFromSection
<br>    module = __import__(&quot;%s.%s&quot; % (module_type, type), globals(), locals(), type)<br>  File &quot;./FeatureServer/DataSource/PostGIS.py&quot;, line 2, in ?<br>    from OGR import OGR<br>  File &quot;./FeatureServer/DataSource/OGR.py&quot;, line 2, in ?
<br>    import ogr, osr<br>  File &quot;/usr/lib64/python2.3/site-packages/ogr.py&quot;, line 33, in ?<br>    import _gdal</pre>so I run /sbin/ldconfig to reload the shared libararies and I get:<br><br><pre>An error occurred: OGR could not read the WFS result. Result was: &lt;?xml version=&#39;
1.0&#39; encoding=&quot;ISO-8859-1&quot; ?&gt;<br>&lt;wfs:FeatureCollection<br>   xmlns:ms=&quot;<a href="http://mapserver.gis.umn.edu/mapserver">http://mapserver.gis.umn.edu/mapserver</a>&quot;<br>   xmlns:wfs=&quot;<a href="http://www.opengis.net/wfs">
http://www.opengis.net/wfs</a>&quot;<br>...<br>  File &quot;./FeatureServer/Server.py&quot;, line 232, in cgiHandler<br>    format, content = service.dispatchRequest( params, path_info, host, post_data, request_method, accepts )
<br>  File &quot;./FeatureServer/Server.py&quot;, line 109, in dispatchRequest<br>    result = method(action)<br>  File &quot;./FeatureServer/DataSource/WFS.py&quot;, line 39, in select<br>    raise Exception(&quot;OGR could not read the WFS result. Result was: %s&quot; % open(tmpfile).read())
<br></pre><br>which was the original error I got.&nbsp; So I go back to ogrinfo and check the gml again:<br><br>[root@niceguy ogr]# ./ogrinfo wfs.gml<br>ERROR 1: Unable to create Xerces C++ based GML reader, Xerces support<br>
not configured into GDAL/OGR.<br>ERROR 1: File wfs.gml appears to be GML but the GML reader can&#39;t<br>be instantiated, likely because Xerces support wasn&#39;t<br>configured in.<br>FAILURE:<br>Unable to open datasource `wfs.gml&#39; with the following drivers.
<br><br>!!! All of a sudden it doesn&#39;t work.&nbsp; so, I can run make install from gdal (again) and then check ogrinfo and get right back to the beginning:<br><br>[root@niceguy ogr]# ./ogrinfo wfs.gml<br>Had to open data source read-only.
<br>INFO: Open of `wfs.gml&#39;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; using driver `GML&#39; successful.<br>1: GIS<br><br>!!! i&#39;m stuck in a loop! after make install, shared libararies aren&#39;t found, but loading the shared libraries makes ogr think it doesn&#39;t have xerces support, even though it does RIGHT before reloading shared libraries.
<br><br>I&#39;m totally floored.<br>Anyone want to take a crack at that?<br><br>I couldn&#39;t thank you enough.<br>-Ed<br>