GeoServer 1.6.2 on WinXP, Oracle plugin.
In the wfs:FeatureCollection, I get xml like this:
<gml:featureMember>
<gml:STATES fid="STATES.17">
<gml:STATE_NAME>Louisiana</gml:STATE_NAME>
<gml:STATE>LA</gml:STATE>
<gml:REGION>Southeast</gml:REGION>
<gml:GEOLOC>
<gml:MultiPolygon
srsName="http://www.opengis.net/gml/srs/epsg.xml#4269">
<gml:polygonMember>
<gml:Polygon>
<gml:outerBoundaryIs>
<gml:LinearRing>
<gml:coordinates
xmlns:gml="http://www.opengis.net/gml" decimal="." cs="," ts=" ">
In my TransactionRequest I have this:
<wfs:Insert xmlns:wfs="http://www.opengis.net/wfs">
<gml:STATES xmlns="http://www.opengis.net/wfs">
<gml:GEOLOC>
<gml:MultiPolygon
srsName="http://www.opengis.net/gml/srs/epsg.xml#4269">
<gml:polygonMember>
<gml:Polygon>
<gml:outerBoundaryIs>
<gml:LinearRing>
<gml:coordinates>-65.647717,42.759745 -65.647717,44.218079
-68.029565,44.218079 -68.029565,42.759745
-65.647717,42.759745</gml:coordinates>
</gml:LinearRing>
</gml:outerBoundaryIs>
</gml:Polygon>
</gml:polygonMember>
</gml:MultiPolygon>
</gml:GEOLOC>
<STATE_NAME xmlns="">ZULU</STATE_NAME>
<STATE xmlns="">ZZ</STATE>
<REGION xmlns=""></REGION>
<MI_STYLE xmlns=""></MI_STYLE>
</gml:STATES>
</wfs:Insert>
After sending the request, I get a ServiceException:
<ServiceException>
org.geotools.data.DataSourceException: SQL Exception writing
geometry columnORA-29875: failed in the execution of the
ODCIINDEXINSERT routine
ORA-13365: layer SRID does not match geometry SRID
ORA-06512: at "MDSYS.SDO_INDEX_METHOD_10I", line 709
ORA-06512: at "MDSYS.SDO_INDEX_METHOD_10I", line 225
Any idea what's wrong with my request? Or is it something on the server?
TIA.