About connection network blackBerry Smartphones

Hello everyone!

At first, I must say that I am a newbie with the BlackBerry.

I use T-Mobile as a career.

The maximum speed I get from the repartir0 of the career is 7.2/1,4 Mbps... However, my question is this:

If I am at home with my device BB and at home I have the WiFi router and my BB is connected, if I try to open certain pages or some do sort of request to the Internet, the BB will use the 3G connection or my WiFi?

I tried to check the system where I can order the connections (1. WiFi - or tier 2. 3 tc g.)

It is perhaps a silly question, but please help me!

Best regards

Dean

Hiya!

and the answer is...

If you connect wirelessly, your device will use it instead of your 3 G/EDGE current connection. When not in the scope of the WiFi, it will be automatically 3 G/EDGE.

Tags: BlackBerry Smartphones

Similar Questions

  • About compatibility of blackBerry Smartphones

    Since he didn't there has no filter in the world app for device interface, if I am on the world of the app on my Storm, should I assume that all applications are indeed friendly storm?

    I don't want to pay for an application only discover that it does not work.

    Hello

    The applications you see in the App World on your BlackBerry smartphone will be designed to be compatible with your BlackBerry.

  • Unable to connect to the gsm network blackBerry smartphones

    I've got bb 8320I think it's the phone from t-mobile usa, but I'm not sure. I would use this phone with the local water supplier. But a mobile network does not come when I rolled local sim. Under 'mepd' I see that sim has been detected and all services (SIM, NETWORK...) are disabled. I tried mep2 but nothing came of it. MEP2 does not work. Can U give me an idea?

    (1) is my phone locked or not? Why mep2 does not at all?

    (2) why mobile GSM network does not?

    It's a really stupid question.

    The answer is

    1. it is an unlocked phone. There's a reason why mep2 does not come and network under mepd is disabled

    2 / manage mobile/network connections / changed on YOU. The phone works fine. I am able to make calls.

  • Network blackBerry Smartphone connection curve 9220

    I recently bought a blackberry curve 9220 and my suncellular plan was updated to take advantage of all the benefits of bbm, unlimited etc. of internet browsing. My problem started when I installed blackberry protection, updated when he asked to be updated, but unfortunately my service plan has been changed. Now I can use my bbm when there is wifi available, except that nothing. And the signal indicator says GSM, initially it was EDGE. Is it possible to cancel the service plan changed by the blackberry protection?

    The BlackBerry Protect application does not and cannot change your service plan. You will need to contact your service provider to see what the problem with your data plan and wireless.

    John

  • Connection network in Smartphone problem

    Hello

    I have read through some networking related tutorials, KB and support forums and have developed this code:

    public class GetURL implements Runnable, Stoppable{
    
        private String _url = null;
        private boolean _stop = false;
        private Object _notifyObject = new Object();
        private String _responseText = null;
        private int _responseCode = 0;
    
        private URLRequestedListener _ul;
    
        public GetURL(String urlToGet, URLRequestedListener ul) {
            _url = Utils.encodeUrl(urlToGet);
            _ul = ul;
        }
    
        public void run() {
            HttpConnection httpConn = null;
            StreamConnection s = null;
    
            try {
    
                httpConn = Utils.getConnection(_url, s);
    
                if ( _stop ) { return; }
                _responseCode = httpConn.getResponseCode();
                if ( _stop ) { return; }
    
                //fetch the content of the URL
                if (_responseCode == HttpConnection.HTTP_OK) {
                    InputStream input = httpConn.openDataInputStream();
    
                    byte[] data = new byte[256];
                    int len = 0;
                    StringBuffer raw = new StringBuffer();
    
                    while (-1 != (len = input.read(data))) {
                        if (_stop) {
                            if(httpConn != null) httpConn.close();
                            if(s != null) s.close();
                            if(input != null) input.close();
                        }
                        raw.append(new String(data, 0, len));
                    }
    
                    _responseText = raw.toString();
    
                    input.close();
                }
    
            } catch (IOException ioe) {
                Utils.caughtException(ioe);
            } catch (Exception e) {
                Utils.caughtException(e);
            } finally {
                try {
                    if(httpConn != null) httpConn.close();
                    if(s != null) s.close();
                } catch (Exception e) {
                    Utils.caughtException(e);
                }
                httpConn = null;
            }
    
            // FIXME remove this
            System.out.println("------------ RESPONSE ------------");
            System.out.println("RESPONSE CODE: " + _responseCode);
            System.out.println("RESPONSE TEXT: " + _responseText);
            System.out.println("------------ RESPONSE ------------");
    
            // Make things final so we can use them in the inner class
            if ( _stop ) { return; }
            //final String textString = responseMessage;
            final Stoppable ourProcessing = this;
            UiApplication.getUiApplication().invokeLater(new Runnable() {
                public void run() {
                    if ( ourProcessing.isStopped() ) { return; }
                    //Dialog.alert(textString);
                    //callback method called after URL call is completely finished
                    _ul.afterURLRequested(_responseText);
    
                }
            });
        }
    
        public boolean stop() {
            if ( !_stop ) {
                _stop = true;
                synchronized(_notifyObject) {
                    _notifyObject.notify();
                }
            }
            return true;
        }
    
        public boolean isStopped() {
            return _stop;
        }
    
    }
    

    then call the Utils.getConnection method:

        public static HttpConnection getConnection(String url, StreamConnection s) throws IOException{
            System.out.println("CONNECTING " + url); //FIXME remove this
            HttpConnection httpConn = null;
    
            //additional coding to retrieve WAP 2.0 UID from device (only if using TRANSPORT_WAP2)
            ServiceBook sb = ServiceBook.getSB();
            ServiceRecord[] records = sb.findRecordsByCid("WPTCP");
            String uid = null;
            for (int i = 0; i < records.length; i++) {
    
                //FIXME remove all of this
                System.out.println("APN: " + records[i].getAPN());
                System.out.println("CAAddress: " + records[i].getCAAddress());
                System.out.println("CARealm: " + records[i].getCARealm());
                System.out.println("Cid: " + records[i].getCid());
                System.out.println("CidHash: " + records[i].getCidHash());
                System.out.println("CompressionMode: " + records[i].getCompressionMode());
                System.out.println("DataSourceId: " + records[i].getDataSourceId());
                System.out.println("Description: " + records[i].getDescription());
                System.out.println("DisabledState: " + records[i].getDisabledState());
                System.out.println("EncryptionMode: " + records[i].getEncryptionMode());
                System.out.println("HomeAddress: " + records[i].getHomeAddress());
                System.out.println("Id: " + records[i].getId());
                System.out.println("KeyHashForService: " + records[i].getKeyHashForService());
                System.out.println("LastUpdated: " + records[i].getLastUpdated());
                System.out.println("Name: " + records[i].getName());
                System.out.println("NameHash: " + records[i].getNameHash());
                System.out.println("NetworkAddress: " + records[i].getNetworkAddress());
                System.out.println("NetworkType: " + records[i].getNetworkType());
                System.out.println("Source: " + records[i].getSource());
                System.out.println("Type: " + records[i].getType());
                System.out.println("Uid: " + records[i].getUid());
                System.out.println("UidHash: " + records[i].getUidHash());
                System.out.println("UserId: " + records[i].getUserId());
                System.out.println("CAPort: " + records[i].getCAPort());
                System.out.println("ServiceIdentifierSubType: " + records[i].getServiceIdentifierSubType());
                System.out.println("ServiceIdentifierType: " + records[i].getServiceIdentifierType());
                System.out.println("Transport: " + records[i].getTransport());
                //FIXME remove all of this
    
                // Search through all service records to find the
                // valid non-Wi-Fi and non-MMS
                // WAP 2.0 Gateway Service Record.
                if (records[i].isValid() && !records[i].isDisabled()) {
                    if (records[i].getUid() != null && records[i].getUid().length() != 0) {
                        if ((records[i].getUid().toLowerCase().indexOf("wifi") == -1)
                                && (records[i].getUid().toLowerCase().indexOf("mms") == -1)) {
                            uid = records[i].getUid();
                            break;
                        }
                    }
                }
            }
    
            // connect using RIM's connection, using WAP 2         ConnectionFactory connFact = new ConnectionFactory();
            ConnectionDescriptor connDesc = null;
            System.out.println("WAP 2.0 UID = " + uid); //FIXME remove this
    
            if (uid != null) {
                System.out.println("TRY CONNECTING WAP2"); //FIXME remove this
                // 1. open a WAP 2 connection
                // Connector.open(_url + ";ConnectionUID=" + uid);
                connDesc = connFact.getConnection(url, TransportInfo.TRANSPORT_WAP2, uid);
            }
    
            if(connDesc != null){
                System.out.println("Transport Type = " + connDesc.getTransportDescriptor().getTransportType()); //FIXME remove this
                httpConn = (HttpConnection) connDesc.getConnection();
            }else{
                System.out.println("TRY CONNECTING STREAM CONN"); //FIXME remove this
                // 2. connect using stream connection
                s = (StreamConnection) Connector.open(url);
                httpConn = (HttpConnection) s;
            }
    
            // 3. connect using any available HTTP Connection
            if(httpConn == null){
                System.out.println("TRY CONNECTING ANY AVAILABLE TRANSPORT TYPE"); //FIXME remove this
                httpConn = (HttpConnection)Connector.open(url);
            }
    
            return httpConn;
        }
    

    I tried to use method 3, hoping at least a connection would work (note. I'm not a BB alliance partner, so BIS - B is out of the question):

    1. using WAP 2, using the UID from the smart phone

    2. with the help of Connector.open (url) (StreamConnection)

    3. with the help of (HttpConnection) Connector.open (url)

    in the Simulator, the 2nd method works (using the connection of flow)

    But in the smartphone, it doesn't, the response returns only the strange characters, for example, is the console log if I execute the Utils.getConnection method and attach the debugger to the smartphone (blackberry 9630 tour):

    CONNECTING http://www.XXX.co.id/asdf/bb/sc_merchant.htm
    APN: null
    CAAddress: null
    CARealm: null
    Cid: WPTCP
    CidHash: -29088066
    CompressionMode: 1
    DataSourceId: null
    Description: WAP2.0 transport service book
    DisabledState: false
    EncryptionMode: 1
    HomeAddress: null
    Id: 29
    KeyHashForService: -1955927269
    LastUpdated: 1285986555595
    Name: WAP2 Transport
    NameHash: 324338798
    NetworkAddress: 0.0.0.0:0
    NetworkType: 4
    Source: 2
    Type: 0
    Uid: WAP2 trans
    UidHash: -1142978965
    UserId: -1
    CAPort: 0
    ServiceIdentifierSubType: 0
    ServiceIdentifierType: 0
    Transport: null
    WAP 2.0 UID = WAP2 trans
    TRY CONNECTING WAP2
    JVM:Unsupported Native Method VPN.isVPNSupported[8cb]
    VM:NCICv=41
    VM:NMACv=13
    Adding process=XXX(422) to table
    Adding tunnel id=1mode=FG to process=XXX(422)
    Transport Type = 3
    ------------ RESPONSE ------------
    RESPONSE CODE: 200
    RESPONSE TEXT: j------------ RESPONSE ------------
    

    My question is:

    1. I'm doing something wrong? I mean, I tried some connection methods, like using WAP2 by extracting first UIDS or using any transport available, but I still can't get the connection works in the BB smartphone (in the Simulator, it's OK, and I connect to the address is valid)

    2 - is there anyway to simulate many different type of transport in the Simulator (BIS-B, WAP1, WAP2, WIFI, etc...)?

    Thank you very much

    Yusuf

    I'm sorry, it seems that I answered my own question again by copy - paste code localytics (http://www.localytics.com/blog/post/how-to-reliably-establish-a-network-connection-on-any-blackberry...)

  • Problem connecting wifi blackBerry Smartphones on 8900

    Hi guys,.

    Just bought my bb which is an amazing piece of kit. I am a customer of uk on O2, a payday that you use the data service, but have a contract with o2, I downloaded my settings of them and DIRECT email services work fine.

    but im having a problem accessing any service through my home wifi network, I tried to remove security and and allowing all traffic to the bb with no luck. apparently the o2 can't help. My bb recognize the network and connects to him and I get a green "sky24083", but I get a gray line instead of a tick. I searched the forums, but nothing seems to work. any help would be greatly appreciated. A reading of diagnostic wi - fi

    A Wi - Fi connection

    Current profile: SKY24083

    SSID: SKY24083

    AP MAC address: 00:1E:74:B9: *: *.

    Security type: open

    Association: success

    Authentication: success

    Local IP address: 192.168.0.4

    Signal level:-46 dBm

    Data connection speed: 54 Mbps

    Status: Acquired network

    Authentication failure reason:

    Network type: 802. 11 b / g

    Network channels: 6

    Encryption in pairs: no

    Group Cipher: no

    Gateway address: 192.168.0.1

    DHCP: success

    Primary DNS: 192.168.0.1

    Secondary DNS: 0.0.0.0

    Suffix DNS: Home

    Subnet mask: 255.255.255.0

    Server's domain suffix:

    Certificate: Not Applicable

    Software token: not Applicable

    Auth L3:

    VPN

    Current profile:

    Address of the hub:

    Contact: n/a

    Authentication: n/a

    Secure the device IP:

    Status: VPN profile is not found.

    Hub address: n/a

    Hub IP:

    Primary DNS:

    Secondary DNS:

    DNS suffix:

    Set the subnet mask:

    Restart:

    The life of the session:

    Re-login to:

    Failed connection attempts: 0

    Certificate:

    Software token:

    BlackBerry infrastructure

    Address:

    The IP protocol used:

    Connection: error

    Router authentication: N/A

    Authentication server: N/A

    Last Contact to:

    I only did the actions in the thread I posted.  I don't know about the removal of books.  Take out the battery and do a reset solved my problem.

  • Cannot connect Internet blackBerry smartphones?

    I bought a bb from a friend, so I put a new sim card and I can only receive calls and resonate, I try to go on the internet or bb app world but just get message saying unable to connect and check your network please can you eany1 help me to solve my problem thanks

    Do you have a data Plan BlackBerry enabled on your account with your carrier or mobile provider?

    You have to, to get the push RIM email functions you are looking for, as well as services of BlackBerry data such as the Web browser, Facebook for BlackBerry, BlackBerry Messenger and much more.

    Then call your carrier and you learn about to have added to your account BlackBerry data Plan.

    Good luck.

  • Connection 3G blackBerry Smartphone problem

    Hello! I just got my torch yesterday and I like it so far, but there is a problem: 3G does not work. Not at all. Internet works fine via the wi - fi connection, but if I try to access the internet without my home wi-fi I get the message, "there is an insufficient network coverage for your request. Please try again later. "I have search everywhere on the internet and it seems to be a common problem.

    I tried the battery pull and the phone reset methods. Does not work.

    It does not have 3G in the upper right corner, and I have full bars.

    He has had this problem since I got it, and it's new, so I'm a little upset about this. If I pay for a data plan, I expect to be able to use it.

    Thanks in advance for any help you have to offer.

    Right next to the symbol of the 3 G upper-left, there is a small symbol of BlackBerry?  Who should attend so that you surf on your network connection.

    If it is not present, since your homescreen go in manage connections.  Make sure that your Mobile network is enabled (it will be if you see 3G).  Click on the below Mobile Network Options and make sure that data Services is defined on IT.

    You should now be able to go back and surf in 3G.  I hope that helps you.

  • Network blackBerry Smartphone problems

    Hey! I have known problems of network for more than 2 months now... I contact Vodacom service provider and they assured me that their network is working perfectly well.

    I don't know what to do anymore because now I can't access the internet and my Facebook Mobile is just annoying...

    Please help with this problem because I can not continue like this more. Its driving me crazy...

    Please, I beg you!

    Hello Leboh

    Why don't you try to uninstall the Facebook application...

    Open the link in the browser on your blackberry

    http://www.BlackBerry.com/Facebook

    Remember that to access this application, you must have data or BIS plan.

    Kind regards.

    Bravo * don't forget to give to these people who help and advise you about your questions * Can
    Accept as Solution to * comment *.

    @gutijose14

  • Problem connecting facebook blackBerry Smartphones

    Hello...
    I have a BB 8520 curve... I have a problem with loging in Facebook.
    When I put my facebook I got through native browser in the Welcome screen and click on the connection.
    After treatment at the facebook shows me "You must open a session" and this message shows me again and again.
    Infact the opera browser works for me but the BB browser does not work why? Someone help please... My BB os is 4.6.1

    Hello and welcome to the community!

    4.6.1 is quite old... I recommend you update (I'm sure that some level of 5.0 OS is available for your phone model). The easiest way is, on a PC (you can not do on MAC):

    (1) make sure that you have a current backup and your BB complete... you can find the instructions at the link in my auto-sig below.

    2) uninstall all the BB OS packages from your PC,

    (3) make sure you have the BB Desktop Software already installed

    (4) download and install on your computer, the BB OS package you want:

    • http://us.BlackBerry.com/support/downloads/download_sites.jsp
    • If all you want are the levels of BONE, it is first sorted by carrier - the carrier supports, your search will be fast. However, some carriers are much slower than others to release updates. To really get the package up-to-date OS for your BB, you need to dig through and find all businesses that support your specific model BB and then compare the BONE levels they support.

    5) remove all copies of the SELLER on your PC. XML... There will be at least one and maybe 2, and they will be located in the same way or to (it changes based on your version of Windows) these files:

    • C:\Program Files (x 86) \Common Files\Research In Motion\AppLoader
    • C:\Users\(your Windows username) \AppData\Roaming\Research In Motion\BlackBerry\Loader XML

    6 (a) to change your level of BB OS installed (at level or lower), you can run the Desktop software and connect your BB... the software should offer the operating system package you have installed on your PC.

    6 (b) or, for recharging your BB OS level installed as well to change, work around the Desktop software and use the CHARGER. EXE directly, through step 2 in this process:

    If, during the process of 6a or 6 b, your BB has an error '507', simply unplug the USB of the BB cord and reinsert it. do nothing else... This should allow the installation to continue.

    If you are on a MAC, you are limited to only your sanctioned carriers OS packages... but can still use any level they currently have to sanction. See this procedure:

    • KB19915 How to perform a clean reload of the smartphone BlackBerry using BlackBerry Desktop Software application software

    Good luck and let us know!

  • 'Data Connection Refused' blackBerry smartphones turn off the notification!

    Hello, I'm on sick leave for the next three months and my work doesn't pay for my phone, and I really didn't want to know how many emails are piling up in my Inbox, while I'm away, so I called AT & T today and cancelled my internet package.  So, right now, I'm only using my blackberry as a phone and calendar, tasks, etc.  There is a notification that appears on top of my phone that says 'Data Connection Refused'.  I looked through the options and I can't understand how to transform that turned off, any suggestions?

    Thank you!!!

    This means that your SIM is not provisioned for BlackBerry services... which is obvious as your request to cancel your BlackBerry data plan. To delete "Data Connection Refused' on top of your device go Options -> Mobile network -> Data Service: Off.

  • Help with turning on Mobile network blackBerry Smartphones

    My blackberry curve does not connect to a wireless network.  I tried to check the box Mobile network in respect of the management of connections and do not access.  I turned the phone off and then turned it back... nothing.  I have disabled all connections and then turn it back on and still nothing.  When I try to call from the phone, I enter the phone number, press the button send green and nothing happens.  I try to compose my contacts and nothing happens.  I tried calling my phone and it goes straight to voicemail.  I am home, which, for the last 6 months, the signal was strong.  I'm at my wits end.  Help!

    I jumped the battery and put it again and everything was fine.  In the 6 months that I have owned a Blackberry, it's never got stuck like that.  I hope that it is an instance of time.

  • Network blackBerry Smartphone problem

    When I open the blackberry world it say check connection yournetwork and then try agaim

    Thnak you so the forum is really a big blow to hand all of my problems have been take care of thank you

  • Connection of blackBerry Smartphones Blackberry ID - password and security answer the forgotten two

    I forgot my password to connect Blackberry ID so the answer to the security question and can not find a way to reset them both on the support pages.

    Can someone please suggest a solution?

    Thank you

    I did exactly the same thing... It sucks. I was told to go back to the email that was sent to you from [email protected] there is a link there to the deletion of your profile. Once you do this just download everything again. hope this works for you as well

  • Network blackBerry Smartphones

    Hi, can someone tell me where and how I can find my BB Torch the phone's MAC address to connect to a secure WiFi network.

    The torch of the main screen and hold ALT key (left side) and type EACE. This will bring up a menu that displays all your information on the device.  What is show your MAC address?

    Also, look at your Options > on screen (or Options > device > on)

Maybe you are looking for