I want to query selected propertynames from a list of Typenames in Geoserver. I could find an example from OGC WMS 1.1.0 Implementation Specification ( pdf document page 80 Example 10) which is not working for me. Here is the example:
Example 10
Query some properties of a list of feature types. In this case, the attributes WKB_GEOM and TILE_ID are fetched for the INWATERA_1M feature type and all the attributes of feature type BUILTUPA_1M are fetched.
http://www.someserver.com/wfs.cgi& SERVICE=WFS& VERSION=1.0.0& REQUEST=GetFeature& PROPERTY=(INWATERA_1M/WKB_GEOM,INWATERA_1M/TILE_ID)(BUILTUPA_1M/*)& TYPENAME=INWATERA_1M,BUILTUPA_1M
When I try to implement this I got the following error
"Requested property: PropertyName1 is not available" The possible propertyName values are:[PropertyName1, , , , , ]"
It would be great if someone give me a working example for Geoserver.
thank you in advance