getFeature in arcsde
--------------------

                 Key: GEOT-1502
                 URL: http://jira.codehaus.org/browse/GEOT-1502
             Project: GeoTools
          Issue Type: Bug
          Components: data arcsde
         Environment: I've come across what might be a bug in the ArcSDE data 
source.

i'm running geoserver 1.5.1 on windows xp, ArcSDE is
version 8.2
            Reporter: le nghia
            Assignee: Gabriel Roldán


When i do a getFeature with a spatial filter where the spatial filter is in
the bounds of the target datasource such as:

<wfs:GetFeature service="WFS" version="1.0.0"
  outputFormat="GML2"
  xmlns:topp="http://www.openplans.org/topp";
  xmlns:wfs="http://www.opengis.net/wfs";
  xmlns:ogc="http://www.opengis.net/ogc";
  xmlns:gml="http://www.opengis.net/gml";
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
  xsi:schemaLocation="http://www.opengis.net/wfs
                      http://schemas.opengis.net/wfs/1.0.0/WFS-basic.xsd";>
  <wfs:Query typeName="topp:SDE.SDE.VP_HUYEN_REGION">
<ogc:Filter>
<ogc:Intersects>
<ogc:PropertyName>the_geom</ogc:PropertyName>
<gml:Box srsName="http://www.opengis.net/gml/srs/epsg.xml#100002";>
<gml:coordinates>206467.08225199,1980099.52203808 
822299.3884895312,2587082.2123953784</gml:coordinates>
</gml:Box>
</ogc:Intersects>
</ogc:Filter>
    </wfs:Query>
</wfs:GetFeature>

it works fine,however if i make a modification  point filter such as :

<wfs:GetFeature service="WFS" version="1.0.0"
  outputFormat="GML2"
  xmlns:topp="http://www.openplans.org/topp";
  xmlns:wfs="http://www.opengis.net/wfs";
  xmlns:ogc="http://www.opengis.net/ogc";
  xmlns:gml="http://www.opengis.net/gml";
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
  xsi:schemaLocation="http://www.opengis.net/wfs
                      http://schemas.opengis.net/wfs/1.0.0/WFS-basic.xsd";>
  <wfs:Query typeName="topp:SDE.SDE.VP_HUYEN_REGION">
<ogc:Filter>
<ogc:Intersects>
<ogc:PropertyName>the_geom</ogc:PropertyName>
<gml:Point srsName="http://www.opengis.net/gml/srs/epsg.xml#100002";>
<gml:coordinates>206467.08225199,1980099.52203808</gml:coordinates>
</gml:Point>
</ogc:Intersects>
</ogc:Filter>

I get a error : 

<gml:boundedBy>
<gml:null>unknown</gml:null>
</gml:boundedBy>

trace in geoserver have a error : 

ArcSDE error number : -42
Error Description :  USER SPECIFIED WHERE CLAUSE IS INVALIDE


Nghialt

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
Geotools-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/geotools-devel

Reply via email to