Bug report #21059

Updated by Jürgen Fischer about 5 years ago

The committed changes (commit:dedbbd4) seem to break the server in cases where a POST is used to transmit the query parameters. In this case QgsServerRequest analyzes the posted parameters and appends them to the original url so the server services can build QgsWmsParameters, QgsWfsParameters etc. from the query string. With the overriden url() getter in QgsFcgiServerRequest the original url is returned to the services which in a POST scenario has no query string resulting in the services (at least in their current implementation) to not be able to resolve the posted parameters.

Back