mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
Changed http get in wfs provider to use path and query string instead of full url. Full url does not work with some servers
git-svn-id: http://svn.osgeo.org/qgis/trunk@9489 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
parent
029adf2bc1
commit
44ed7f90e5
@ -89,7 +89,9 @@ int QgsWFSData::getWFSData()
|
||||
{
|
||||
mHttp.setHost( requestUrl.host() );
|
||||
}
|
||||
mHttp.get( mUri );
|
||||
|
||||
//mHttp.get( mUri );
|
||||
mHttp.get(requestUrl.path() + "?" + QString(requestUrl.encodedQuery()));
|
||||
|
||||
|
||||
//loop to read the data
|
||||
|
Loading…
x
Reference in New Issue
Block a user