Click here to Skip to main content
15,867,834 members
Articles / Mobile Apps

Network Connection Manager - Select Network Connections from many Networks Available

Rate me:
Please Sign up or sign in to vote.
1.00/5 (25 votes)
3 Oct 2006CPOL 54.2K   28   7
How to select network connections from many Networks available like BlueTooth, Active Sync, 3G, Wireless Lan

Introduction

The primary purpose of the article is to centralize and automate the establishment and management of the network connections on a device. Applications on the device use the Connection Manager to establish or schedule a network connection. The Connection Manager handles the details of the connection; the application simply informs the Connection Manager of the network type to use for the connection (the Internet, for example).

When an application requests a network connection, the Connection Manager first retrieves all of the possible connections from a set of Connection Service Providers (CSPs). The Connection Manager then associates a set of costs with these routes and ultimately determines the optimal connection based on cost, latency, bandwidth, and other factors. Finally, the Connection Manager queues the requested connection and uses the CSPs to establish the connection at the appropriate time.

Connection Manager takes care of everything, i.e., all connections are made to networks:

  • "The Internet"
  • "My Corporate Network"

ADD Header file

C++
#include <objbase.h>
#include <initguid.h>
#include <connmgr.h>

In Editor, go to Project>Settings:

Go to Link tab

Object/Library modules: cellcore.lib

Adding Lib

Code

Make the connection

C++
CONNMGR_CONNECTIONINFO connInfo;
HANDLE hConnection;
connInfo.cbSize = sizeof(connInfo);
connInfo.dwParams = CONNMGR_PARAM_GUIDDESTNET;
connInfo.dwFlags = 0;
connInfo.dwPriority = CONNMGR_PRIORITY_USERINTERACTIVE;
connInfo.bExclusive = false;
connInfo.bDisabled = false;
connInfo.guidDestNet = IID_DestNetInternet;
connInfo.hWnd = NULL;
//connInfo.uMsg = WM_APP_CONNMGR;
connInfo.lParam = (LPARAM)0;
// Make the connection
ConnMgrEstablishConnection(&connInfo , &hConnection);

Close the connection

C++
ConnMgrReleaseConnection(hConnection, 1);

History

  • 3rd October, 2006: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Systems Engineer
India India
System Programmer in InfoPro Corporation India .
Currently in the Development Team of world's one of the first Mobile Learning Management System.
Can be contacted at pradeep.kothari@yahoo.co.in

Comments and Discussions

 
GeneralSource code Pin
imzadi5-Jan-11 13:22
imzadi5-Jan-11 13:22 
QuestionHow To Connect 3G network Pin
youcan.zeng19-Aug-09 3:51
youcan.zeng19-Aug-09 3:51 
Questionsource code Pin
Guy in London21-Jan-09 23:15
Guy in London21-Jan-09 23:15 
GeneralVB.NET Sample Pin
jorgedf77723-Sep-08 15:24
jorgedf77723-Sep-08 15:24 
QuestionCan you send me your source code Pin
alert091915-Jun-08 20:02
alert091915-Jun-08 20:02 
GeneralRespect... Pin
Bateman12-Dec-06 6:55
Bateman12-Dec-06 6:55 
QuestionRe: Respect... Pin
Pradeep Kothari27-May-07 2:35
Pradeep Kothari27-May-07 2:35 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.