Skip to content

Commit

Permalink
Server: Remove soap request handler
Browse files Browse the repository at this point in the history
  • Loading branch information
dmarteau committed Dec 19, 2016
1 parent 735f479 commit f71bf57
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 884 deletions.
1 change: 0 additions & 1 deletion src/server/CMakeLists.txt
Expand Up @@ -25,7 +25,6 @@ SET ( qgis_mapserv_SRCS
# qgshttptransaction.cpp
qgsgetrequesthandler.cpp
qgspostrequesthandler.cpp
qgssoaprequesthandler.cpp
qgsowsserver.cpp
qgswmsserver.cpp
qgswfsserver.cpp
Expand Down
2 changes: 0 additions & 2 deletions src/server/qgsserver.cpp
Expand Up @@ -28,7 +28,6 @@
#include "qgsfontutils.h"
#include "qgsgetrequesthandler.h"
#include "qgspostrequesthandler.h"
#include "qgssoaprequesthandler.h"
#include "qgsproject.h"
#include "qgsproviderregistry.h"
#include "qgslogger.h"
Expand Down Expand Up @@ -136,7 +135,6 @@ QgsRequestHandler* QgsServer::createRequestHandler( const bool captureOutput )
{
if ( strcmp( requestMethod, "POST" ) == 0 )
{
//requestHandler = new QgsSOAPRequestHandler();
requestHandler = new QgsPostRequestHandler( captureOutput );
}
else
Expand Down
1 change: 0 additions & 1 deletion src/server/qgsserverinterfaceimpl.h
Expand Up @@ -23,7 +23,6 @@
#include "qgscapabilitiescache.h"
#include "qgsgetrequesthandler.h"
#include "qgspostrequesthandler.h"
#include "qgssoaprequesthandler.h"

/**
* QgsServerInterface
Expand Down

0 comments on commit f71bf57

Please sign in to comment.