I have the following url:
http://localhost:8080/geoserver/wfs?service=WFS&version=2.0.0&request=GetFeature&typename=anjali%3Aaddress&outputFormat=application%2Fjson&isDenormalized=false&propertyname=housenumber,housename,poi,street,subsublocality,sublocality,locality,village,subdistrict,district,city,state,pincode,formattedaddress,eloc,latitude,longitude,geocodelevel,confidencescore,id,fulladdress ,lat&count=500&startIndex=0
Here fulladress contains a space after it i.e. 'fulladdress ' which I'm passing in the propertyname while making a wfs request via geoserver. I'm getting the following error from geoserver:
<ows:ExceptionReport xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:ows="http://www.opengis.net/ows/1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.0.0" xsi:schemaLocation="http://www.opengis.net/ows/1.1 http://localhost:8081/geoserver/schemas/ows/1.1.0/owsAll.xsd"> <ows:Exception exceptionCode="InvalidParameterValue" locator="GetFeature"> ows:ExceptionTextRequested property: fulladdress is not available for anjali:address. The possible propertyName values are: [geom, housenumber, housename, poi, street, subsublocality, sublocality, locality, village, subdistrict, district, city, state, pincode, formattedaddress, eloc, latitude, longitude, geocodelevel, confidencescore, id, fulladdress , lat]</ows:ExceptionText> </ows:Exception> </ows:ExceptionReport>
I have tried the following but nothing seems to work:
- Replacing space with %20
- Repacing fulladress with 'fulladdress '
- Repacing fulladress with "fulladdress "
I have even read the official documentation regarding this but nothing is mentioned regarding this issue. Also if I remove the whitespace then the information regarding fulladdress is not returned by the geoserver. A prompt help will be much appreciated.