I know this has been discussed before but I really don't know the solution and haven't found any in the forum.
I need to connect to the internet several times in my application, I'm using QNetworkAccessManager like this:
The problem is that I want the user to only need to select the connection to use once when the application starts. From what I understand I can use QNetworkConfigurationManager to accomplish this. But it's not included in Qt 4.6.2 and I need to install Qt Mobility to get it working. When Nokia approves I wan't do publish my application on Ovi Store. As the Qt Mobility is not included in Qt it will be a problem to publish my app later? The user need to download not only Qt, also Qt Mobility. Or should I use Qt Mobility anyway as it will later be included?Code:QNetworkAccessManager *networkAccessManager = new QNetworkAccessManager(this); connect(networkAccessManager, SIGNAL(finished(QNetworkReply*)),this, SLOT(slotFinished(QNetworkReply*))); QUrl url("http://"domain.com"); QNetworkReply *reply = networkAccessManager->get(QNetworkRequest(url));
Are you with me on my concerns and thinking, what do you recommend? Is there another workaround that I should use instead?




