Skip to content

Commit

Permalink
VERSION is mandatory for getmap requests in WMS 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pblottiere authored and nyalldawson committed May 31, 2021
1 parent 0999a96 commit e2f4fc6
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/server/services/wms/qgswmsgetmap.cpp
Expand Up @@ -32,6 +32,13 @@ namespace QgsWms
const QString &, const QgsServerRequest &request,
QgsServerResponse &response )
{
// version is mandatory for getmap requests
if ( request.serverParameters().version().isEmpty() )
{
throw QgsServiceException( QgsServiceException::OGC_OperationNotSupported,
QStringLiteral( "Please add the value of the VERSION parameter" ), 501 );
}

// get wms parameters from query
const QgsWmsParameters parameters( QUrlQuery( request.url() ) );

Expand Down

0 comments on commit e2f4fc6

Please sign in to comment.