Hi,
I'm trying to use qtmobility and webkit.
First, I want the access point to be selected by using code:
QNetworkConfigurationManager manager;
const bool selectIap = (manager.capabilities()& QNetworkConfigurationManager::CanStartAndStopInterfaces);
QNetworkConfiguration defaultIap = manager.defaultConfiguration();
if(!defaultIap.isValid() && (!selectIap && defaultIap.state() != QNetworkConfiguration::Active))
{
// handle if there are no access points available.
}
session = new QNetworkSession(defaultIap, this);
session->open();
After this I connect opened() signal to my own slot, which handles webkit related tasks.
Have I missed something because this doesn't work? I have tested this with N95 8 gigabytes, (S60 3rd edition FP1).
Thanks!
-Miksa



