Hello -
I'm having trouble specifying a CSW GetRecords request with sorting using 
GeoServer 2.11.1.
XML POST request:
<csw:GetRecords xmlns:csw="http://www.opengis.net/cat/csw/2.0.2"; 
xmlns:ogc="http://www.opengis.net/ogc"; resultType="results" 
outputFormat="application/xml" 
outputSchema="http://www.opengis.net/cat/csw/2.0.2"; startPosition="1" 
maxRecords="250" service="CSW" version="2.0.2">
   <csw:Query typeNames="csw:Record">
      <csw:ElementSetName>full</csw:ElementSetName>
      <csw:Constraint version="1.1.0">
         <ogc:Filter>
            <ogc:PropertyIsLike wildCard="*" singleChar="#" escapeChar="!" 
matchCase="false">
               <ogc:PropertyName>AnyText</ogc:PropertyName>
               <ogc:Literal>*</ogc:Literal>
            </ogc:PropertyIsLike>
         </ogc:Filter>
      </csw:Constraint>
      <ogc:SortBy>
         <ogc:SortProperty>
            <ogc:PropertyName>title</ogc:PropertyName>
            <ogc:SortOrder>DESC</ogc:SortOrder>
         </ogc:SortProperty>
      </ogc:SortBy>
   </csw:Query>
</csw:GetRecords>

Response:
<ows:ExceptionReport xmlns:xs="http://www.w3.org/2001/XMLSchema"; 
xmlns:ows="http://www.opengis.net/ows"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; version="1.0.0" 
xsi:schemaLocation="http://www.opengis.net/ows 
http://localhost:8080/geoserver/schemas/ows/1.0.0/owsExceptionReport.xsd";>
    <ows:Exception exceptionCode="NoApplicableCode">
        <ows:ExceptionText>Request failed due to: Sorting on dc:title/dc:value 
is not supported.
Sorting on dc:title/dc:value is not supported.</ows:ExceptionText>
    </ows:Exception>
</ows:ExceptionReport>


I have seen similar results using KVP encoding.  I have also tried various 
other sort properties (identifier for example) but get the same results.  It 
appears that sorting is supported based on unit 
tests<https://github.com/geoserver/geoserver/blob/master/src/extension/csw/core/src/test/java/org/geoserver/csw/GetRecordsTest.java#L407>.
  Any help would be appreciated.


  *   Jason


------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

[email protected]
https://lists.sourceforge.net/lists/listinfo/geoserver-users

Reply via email to