I am trying to use the following code to obtain the access points available to my device:
This returns 3 access point names:Code:XQAccessPointManager * apManager = new XQAccessPointManager(this); QList <XQAccessPoint> pts = apManager->availableAccessPoints(); for (int i=0;i <pts.length(); i++) { this->debug(pts[i].name()); }
Rambo (WLAN)
Fido WAP (WAP Services)
Fido MMS (multimedia msg)
This is great, except that there should be a fourth: Fido GPRS (Internet), and this in the case of my device, this is the one I need, as this is where my internet connection is provided from. I know it is available, as I can access it using the web browser, and it is listed in the device settings Network Destinations.
Any suggestions? Thanks.



