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:
mhugent 2008-10-17 12:10:11 +00:00
parent 029adf2bc1
commit 44ed7f90e5

View File

@ -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