| Reply | « Previous Thread | Next Thread » |
|
Hi,
I select the default access point with this function: Code:
def select_apn(): global apo apid = socket.select_access_point() apo = socket.access_point(apid) socket.set_default_access_point(apo) |
|
Hey carknue,
The only thing you have to do is to save the value of apid in the file. Then you check if apid exists in the file and bi-pass apid = socket.select_access_point() Code:
def apid_isset():
# open the file
# read it
# parse and get the apid value
return apid
def select_apn():
global apo
apid = apid_isset()
if not apid:
apid = socket.select_access_point()
apo = socket.access_point(apid)
socket.set_default_access_point(apo)
LFD Devices: Nokia E61 3rd Edition - pys60 1.4.0 Tips and modules: http://www.lfdm.net/thesis |
|
Quote:
I think that its the position that it appears on the list that is useful for selecting the access point as I havent as yet heard about access points having a unique id. Best Regards croozeus |
| Reply | « Previous Thread | Next Thread » |
| Thread Tools | Search this Thread |
|---|---|
| Rate This Thread | |
| Thread | Thread Starter | Forum | Replies | Last Post |
|---|---|---|---|---|
| How can i know whether an Access point is available or not? | Aaypee | General Symbian C++ | 5 | 2007-08-02 14:22 |
| Browser access point | mateen_maldar | General Symbian C++ | 3 | 2007-06-29 13:58 |
| Access Point Creation Problem on Panasonic X800 | stv2005 | General Symbian C++ | 2 | 2005-08-08 16:50 |
| default access point (GPRS) | juliaf | Symbian Networking & Messaging | 0 | 2005-02-03 09:00 |
| Gateway IP address in Nokia 6600 access point | yashodhan | General Discussion | 0 | 2004-10-01 13:22 |