How to get cell information in Java ME using CBS
hamishwillee
(Talk | contribs) m (Hamishwillee - Adding missing translation link) |
hamishwillee
(Talk | contribs) m (Hamishwillee - Bot update - Fix ReviewerApproval and ArticleMetaData) |
||
| Line 1: | Line 1: | ||
| − | + | ||
[[Category:Java ME]][[Category:How To]] | [[Category:Java ME]][[Category:How To]] | ||
| − | [[Category:Code | + | [[Category:Code Snippet]][[Category:Java ME]] |
__NOTOC__ | __NOTOC__ | ||
__NOEDITSECTION__ | __NOEDITSECTION__ | ||
| − | {{ArticleMetaData | + | {{ArticleMetaData <!-- v1.1 --> |
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
|sourcecode= <!-- Link to example source code (e.g. [[Media:The Code Example ZIP.zip]]) --> | |sourcecode= <!-- Link to example source code (e.g. [[Media:The Code Example ZIP.zip]]) --> | ||
|installfile= <!-- Link to installation file (e.g. [[Media:The Installation File.sis]]) --> | |installfile= <!-- Link to installation file (e.g. [[Media:The Installation File.sis]]) --> | ||
| − | |sdk=<!-- SDK(s) built and tested against (e.g. [http://linktosdkdownload/ Nokia Qt SDK 1.1]) --> | + | |devices= S60 |
| − | |devicecompatability=<!-- Compatible devices (e.g.: All* (must have GPS) ) --> | + | |sdk= <!-- SDK(s) built and tested against (e.g. [http://linktosdkdownload/ Nokia Qt SDK 1.1]) --> |
| − | |signing=<!-- Empty or one of Self-Signed, DevCert, Manufacturer --> | + | |platform= MIDP 2.0 |
| − | |capabilities=<!-- Capabilities required (e.g. Location, NetworkServices.) --> | + | |devicecompatability= <!-- Compatible devices (e.g.: All* (must have GPS) ) --> |
| − | |author=[[User:Im2amit]] | + | |dependencies= <!-- Any other/external dependencies e.g.: Google Maps Api v1.0 --> |
| + | |signing= <!-- Empty or one of Self-Signed, DevCert, Manufacturer --> | ||
| + | |capabilities= <!-- Capabilities required (e.g. Location, NetworkServices.) --> | ||
| + | |keywords= WMA, CBS, Cell info, PushRegistry, MessageConnection, TextMessage | ||
| + | |id= <!-- Article Id (Knowledge base articles only) --> | ||
| + | |language= <!-- Language category code for non-English topics - e.g. Lang-Chinese --> | ||
| + | |translated-by= <!-- [[User:XXXX]] --> | ||
| + | |translated-from-title= <!-- Title only --> | ||
| + | |translated-from-id= <!-- Id of translated revision --> | ||
| + | |review-by= <!-- After re-review: [[User:username]] --> | ||
| + | |review-timestamp= <!-- After re-review: YYYYMMDD --> | ||
| + | |update-by= <!-- After significant update: [[User:username]]--> | ||
| + | |update-timestamp= <!-- After significant update: YYYYMMDD --> | ||
| + | |creationdate= 20090827 | ||
| + | |author= [[User:Im2amit]] | ||
| + | <!-- The following are not in current metadata --> | ||
| + | |subcategory= WMA | ||
| + | |category= Java ME | ||
}} | }} | ||
Revision as of 03:22, 14 February 2012
Article Metadata
Tested with
Compatibility
Article
Problem
How to capture the Cell Info, which is displayed on the home screen of most of the GSM phones, if you set the Cell Info Display: ON in your phone settings. Cell info provides some (area)location related text info about the cell tower our device is present at the moment, along with some service providers advertisements. We don't have direct API in Java ME to capture this Cell Info from our application.
Solution
This Cell info is broadcasted as CBS (Cell Broadcast Service) message by the cell towers and received by all the GSM phones connected to this tower on certain predefined Channel (generally 050) by most of the service providers. Thus our Java ME application can listen to this CBS Channel using Push Registry and capture this information
Sample Code
Imports
import javax.wireless.messaging.*;
import javax.microedition.io.PushRegistry;
setupListening
Register your Midlet for Listening to CBS port 50 and setup a Message Listener
public void setupListening()
{
try{
PushRegistry.registerConnection("cbs://:50",this.getClass().getName(),"*");
}catch(Exception e){}
String[] connList;
connList = PushRegistry.listConnections(true);
if((connList == null) || (connList.length == 0))
{
// You can exit the app, if you want
}
else
{
try{
msgconn = (MessageConnection)Connector.open("cbs://:50");
msgconn.setMessageListener(this);
} catch( IOException e){ e.printStackTrace();}
}
}
notifyIncomingMessage
To Retrieve the CBS message payload.
Note
WMA 120/205 does not support CBS on most of the Nokia S40 devices, it works on Nokia S60 and other devices.
The support for receiving CBS messages has been introduced in newer Series 40 5th Edition, Feature Pack 1 devices, all Series 40 5th Edition, Feature Pack 1 Lite devices and all Series 40 6th Edition devices.
--Submitted by Amitabh Srivastava at 16:10(IST), 27 August 2009.

