I am trying to do a GetFeature request to this WFS Server (GetCapabilities), but unable to find the argument for TYPENAME and thus get this error:
msWFSGetFeature(): WFS server error. Incomplete WFS request: TYPENAME parameter missing
A DescribeFeatureType request also works, but attempting to do the GetFeature request with the <element name="Baustellen_aktuell> does not seem to work in this format:
How can I find the appropriate namespace for the TYPENAME argument from the XML responses of the GetCapabilities or DescribeFeatureType requests?
Baustellen_aktuellandBaustellen_geplantthey have no namespace prefix, so their namespace would be the default namespace. – nmtoken Apr 09 '19 at 10:27http://asgeow02n.stadtdo.de/gisserver/service?map=/gdi_dienste/baustellen/baustellen_internet.map&and my guess is that it is expecting some sort of case sensitive spelling for the TYPENAME parameter (that's against the WFS specification for parameter names), so I think that the service is in error not your request – nmtoken Apr 09 '19 at 10:30msWFSGetFeature(): WFS server error. TYPENAME 'ms:Baustellen_aktuellType' doesn't exist in this server. Please check the capabilities and reformulate your request.– nmtoken Apr 09 '19 at 10:33