Hi!
I am using the wfs-reader in FME accessing the web feature service(wfs):
http://slwgeo.artdata.slu.se:8080/geoserver/SLW/wfs
Feauturetype: "AllSwedishOccurrences {All Swedish Occurrences}"
I am trying to filter specific(e.g. "Margaritifera margaritifera" species in a municipality(Borås) Seems like I can´t get both criterias on the same time.
Getcapabilities: http://slwgeo.artdata.slu.se:8080/geoserver/ows&VERSION;=1.0.0&SERVICE;=WFS&REQUEST;=GetCapabilities
How can I get scientificName Margaritifera margaritifera in municipality Borås by filtering in the WFS-reader? It would be ok to apply a bounding box on coordinates instead of using the attribute municipality Borås.
I know some of xml, and I have been trying to find a solution,using the filter functions taught on Geoserver but now I reached a dead end.
I have tried:
<Filter><And><PropertyIsEqualTo><PropertyName>municipality</PropertyName><Literal>Borås</Literal></PropertyIsEqualTo><PropertyIsEqualTo><PropertyName>scientificName</PropertyName><Literal>Margaritifera margaritifera</Literal></PropertyIsEqualTo></And></Filter>
Seems hard to use two attribute within same xmfilter. Guess I must use attribute and geographic filter within the same xml filter. Envelope-function in wfs-reader and attribute xml filter doesn´t seems to worh together in this case.
Can someone help me?