I want to parse some XML-file in Qt, but that file is located at some server in web. When I used QML I was able to use XMLHttpRequest class which takes address of file in internet (what I do need).
I have only one idea: use network request and download that xml directly. The idea is maybe there is a special interface in XML parser in qt which takes xml-path from internet?
As I know, you should download it. QHttp provides easy way to download it to a temporary file.
New version (based on QNetworkAccessManager):