Namespaces
Variants
Actions

How to get IAP ID of a connection

Jump to: navigation, search
Article Metadata

Article
Created: ivey (01 Jul 2008)
Last edited: hamishwillee (26 Jul 2012)

The code sample below illustrates how to get the IAP ID used by a connection.

_LIT(KIapIdSettingName, "IAP\\Id");
 
// start a test connection
RSocketServ socketServ;
User::LeaveIfError(socketServ.Connect());
CleanupClosePushL(socketServ);
 
RConnection connection;
User::LeaveIfError(connection.Open(socketServ));
CleanupClosePushL(connection);
 
User::LeaveIfError(connection.Start());
 
// get the IAP ID
TUint32 iapId;
User::LeaveIfError(connection.GetIntSetting(KIapIdSettingName, iapId));
 
CleanupStack::PopAndDestroy(2); // connection, socketServ
This page was last modified on 26 July 2012, at 05:38.
60 page views in the last 30 days.
Nokia Developer aims to help you create apps and publish them so you can connect with users around the world.

京ICP备05048969号  © Copyright Nokia 2013 All rights reserved