Suppose I have a Geoserver working with two layers open by WFS (with properties):
StreetLayer (geom, StreetName, Lanes, Length) HouseLayer (geom, Address)
Now, if I want to request a StreetLayer for all streets, but only get the StreetName and Lanes properties, I would send a GET request:
http:
But what if now I want to request both HouseLayer and StreetLayer? This does not work:
http:
I get an exception that says StreetName and Lanes are not in HouseLayer and vice versa. Do I need to make some requests?
EDIT:
So what I want to do is something like this:
http:
source share