Search code examples
jsonblackberry-10blackberry-cascades

Blackberry 10 cascades - Check Internet connectivity


I am developing an application for BB-10 using web service. In this I want to parse JSON in both the get and post methods and I want to check the Internet availability.

How can I do this?


Solution

  • Check the Internet Availability using the below code

    bool app::isNetworkAvailable() {
        QNetworkConfigurationManager netMgr;
        QList<QNetworkConfiguration> mNetList = netMgr.allConfigurations(QNetworkConfiguration::Active);
    
        return (mNetList.count() > 0 && netMgr.isOnline());
    }