Welcome!

Welcome to the Official BlackBerry Support Community Forums. This is your resource to discuss support topics with your peers, and learn from each other. New to the forum? Please visit the ‘Getting Started’ link below.
inside custom component

Java Development

Reply
New Developer
dev_jangir
Posts: 47
Registered: ‎09-11-2009

TCP

HI

i am creating a application in which i am using TCP based  HttpConnection  and it require a APN .

and i know  my carrier APN . but i want to know about carrier at run time 

so is there any way in servicebook or in any other method so that i can get Carrier info at run time 

thxn in advance

Please use plain text.
Developer
Posts: 1,474
Registered: ‎04-14-2009

Re: TCP

Have a look at the RadioInfo class. It can provide you with various bits of information identifying the carrier (MNC, MCC, country code, carrier name).
Please use plain text.
Developer
RexDoug
Posts: 4,764
Registered: ‎07-21-2008

Re: TCP

Example:

 

 

        String name = RadioInfo.getCurrentNetworkName();

 

 

Please use plain text.