Using an already active connection on Symbian
hamishwillee
(Talk | contribs) m (Hamishwillee - Bot change of template (Template:CodeSnippet) - now using Template:ArticleMetaData) |
hamishwillee
(Talk | contribs) m (Hamishwillee - Fix ArticleMetaData) |
||
| Line 1: | Line 1: | ||
| + | [[Category:Symbian C++]][[Category:Networking]][[Category:Code Examples]][[Category:Code Snippet]] | ||
__NOTOC__ | __NOTOC__ | ||
__NOEDITSECTION__ | __NOEDITSECTION__ | ||
| Line 6: | Line 7: | ||
|platform=S60 3rd Edition<br>S60 3rd Edition, FP1 | |platform=S60 3rd Edition<br>S60 3rd Edition, FP1 | ||
|devices=Nokia E90 Communicator, Nokia N95 | |devices=Nokia E90 Communicator, Nokia N95 | ||
| − | + | |creationdate=20080215 | |
| − | + | ||
| − | |creationdate= | + | |
|keywords=RHTTPSession, RSocketServ, RConnection, TCommDbConnPref, TConnectionInfoBuf | |keywords=RHTTPSession, RSocketServ, RConnection, TCommDbConnPref, TConnectionInfoBuf | ||
| Line 15: | Line 14: | ||
|sdk=<!-- SDK(s) built and tested against (e.g. [http://linktosdkdownload/ Nokia Qt SDK 1.1]) --> | |sdk=<!-- SDK(s) built and tested against (e.g. [http://linktosdkdownload/ Nokia Qt SDK 1.1]) --> | ||
|devicecompatability=<!-- Compatible devices (e.g.: All* (must have GPS) ) --> | |devicecompatability=<!-- Compatible devices (e.g.: All* (must have GPS) ) --> | ||
| − | |signing= | + | |signing=Self Signed |
| − | |capabilities= | + | |capabilities=NetworkServices |
|author=[[User:Tepaa]] | |author=[[User:Tepaa]] | ||
}} | }} | ||
| Line 28: | Line 27: | ||
==MMP file== | ==MMP file== | ||
| + | <code text> | ||
LIBRARY http.lib | LIBRARY http.lib | ||
| − | |||
LIBRARY ecom.lib | LIBRARY ecom.lib | ||
| − | |||
LIBRARY esock.lib | LIBRARY esock.lib | ||
| − | |||
LIBRARY commdb.lib | LIBRARY commdb.lib | ||
| − | |||
CAPABILITY NetworkServices | CAPABILITY NetworkServices | ||
| − | + | </code> | |
==Header file== | ==Header file== | ||
| Line 129: | Line 125: | ||
==See also== | ==See also== | ||
[[TSS000056 - How can I determine active connections?]] | [[TSS000056 - How can I determine active connections?]] | ||
| − | |||
| − | |||
Revision as of 06:31, 20 December 2011
Article Metadata
Tested with
Devices(s): Nokia E90 Communicator, Nokia N95
Compatibility
Platform(s): S60 3rd Edition
S60 3rd Edition, FP1
S60 3rd Edition, FP1
Platform Security
Signing Required: Self Signed
Capabilities: NetworkServices
Article
Keywords: RHTTPSession, RSocketServ, RConnection, TCommDbConnPref, TConnectionInfoBuf
Created: tepaa
(15 Feb 2008)
Last edited: hamishwillee
(20 Dec 2011)
Overview
You can use an already active RConnection to establish a connection to the Internet. This saves resources and memory.
RConnection has enumeration of the active connections. The source code finds active connections and attaches to the selected connection via the IAP. If there is no selected active connection, a new one is created. Errors are not handled in the source code.
MMP file
LIBRARY http.lib
LIBRARY ecom.lib
LIBRARY esock.lib
LIBRARY commdb.lib
CAPABILITY NetworkServices
Header file
#include <http.h>
#include <es_sock.h>
#include <commdbconnpref.h>
Source file
// Selected IAP
TInt selectedIap=6;
// Open socket server and connection
RHTTPSession session; // TODO: Set to your class member variable
RSocketServ socketServ; // TODO: Set to your class member variable
RConnection connection; // TODO: Set to your class member variable
TCommDbConnPref connPref; // TODO: Set to your class member variable
socketServ.Connect();
connection.Open(iSocketServ);
// Search through existing connections.
// If there is already a connection that matches the given IAP, try to attach to
// existing connection.
TBool connected(EFalse);
TConnectionInfoBuf connInfo;
TUint count;
if ( connection.EnumerateConnections(count) == KErrNone )
{
for (TUint i=1; i<=count; i++)
{
// Note: GetConnectionInfo expects 1-based index
if ( connection.GetConnectionInfo( i, connInfo ) == KErrNone )
{
if ( connInfo().iIapId == selectedIap )
{
if ( connection.Attach(connInfo, RConnection::EAttachTypeNormal)
== KErrNone )
{
connected = ETrue;
break;
}
}
}
}
}
// Is there an active connection?
if ( !connected )
{
// Could not attach to the existing connection.
// => Start a new connection.
connPref.SetDialogPreference(ECommDbDialogPrefDoNotPrompt);
connPref.SetIapId(selectedIap);
connection.Start(connPref);
}
// Open session
session.OpenL();
// Set the session's connection info...
RStringPool strPool = session.StringPool();
RHTTPConnectionInfo connInfo = session.ConnectionInfo();
// ...to use the socket server
connInfo.SetPropertyL ( strPool.StringF(HTTP::EHttpSocketServ,
RHTTPSession::GetTable() ), THTTPHdrVal (socketServ.Handle()) );
// ...to use the connection
connInfo.SetPropertyL ( strPool.StringF(HTTP::EHttpSocketConnection,
RHTTPSession::GetTable() ),
THTTPHdrVal (REINTERPRET_CAST(TInt, &(connection))) );
// TODO: Remember to close handles in your class destructor, such as:
CYourClass::~CYourClass()
{
session.Close(); // Close handles in this order
connection.Close();
socketServ.Close();
}

