Details
Description
The alias implementation we sponsored was mainly centered around WFS1.0 ... due to ArcGIS not sending a version with its WFS requests (see #1931), the returned WFS1.1 response is causing us significant headaches due to the following ...
1. Getcapabilities
/wfs?SERVICE=WFS&REQUEST=getcapabilities
<FeatureType>
<Name>slip:LGATE-001</Name>
2. ArcGIS will then do a DFT on the given featuretype
/wfs?SERVICE=WFS&VERSION=1.1.0&REQUEST=describefeaturetype&typename=slip:LGATE-001
3. Geoserver returns the followin element ...
<xsd:element name="lgate_001" substitutionGroup="gml:_Feature" type="slip:LGATE-001Type"/>
Note the name value is actually the table name and not the alias.
4. ArcGIS then attempts to GetFeature on lgate_001 which obviously will fail
wfs?SERVICE=WFS&VERSION=1.1.0&REQUEST=getfeautre&typename=lgate_001....
Could not find type: {http://www.openplans.org/topp}lgate_001
WFS1.0 is without problems.
I see... as a temporary workaround can you hit the GetCapabilities request with /wfs?SERVICE=WFS&REQUEST=getcapabilities&version=1.0.0?