Symbian S60 - Multiple connections with one connection dialog

My app needs up to three concurrent connections to download. I am currently using the (slightly modified) CWebClient class provided in the Carbide UI framework, however using multiple instances of this per connection causes multiple types to "select an access point"

There are objects in the class RSocketServ

and RConnection

which appear to be things that open the access point. Would it be a good enough solution to create these static objects (singleton) so that the access point is called only once?

Does anyone have any experience / thoughts?

Thank!

Just in case you are wondering, I am using the S60 3rd ed. FP2 v1.1

+1


source to share


3 answers


RConnection should be the class that launches the access point selection dialog.



If you write your own code, get one RSocketServ instance and 3 RSocket instances. That should be enough. The access point selection dialog will appear only when a connection is established, which will happen only once, until you click on an uncovered area or download time.

+1


source


Another way is to turn off the Select Access Point dialog. You can do this using CIntConnectionInitiator to establish a connection. Although this class is not documented, there are tons of examples at forum.nokia.com .



0


source


Move your own AP and save the AP ID. Then use TCommDbConnPref to set the AP ID and suppress the dialog.

0


source







All Articles