BB Pearl 8130 "access not allowed!" when trying to download Blackberry App World

Hi, well I am trying to download blackberry app world onto my blackberry pearl 8130 and whenever I try to download it it goes through the language prompts but then goes to a page with "access not allowed" My device software is v4.5, I am currently in Canada, I have the data plan, I can use the internet browser and my carrier is Telus. All help is appreciated, please and thank you!

Hi and Welcome to the Forums!
"Access Not Allowed"? Is that the precise and exact message? If not, please do provide the precise message.
Please check this page to ensure you meet the minimum requirements (including if it is available in your country):
http://na.blackberry.com/eng/services/appworld/download.jsp
If it is available in your country and you feel you meet the device-level system requirements, then contact your carrier to ensure that you meet the service plan (from them) requirements for access (via their network) to AppWorld. Generic data plans, even unlimited, are usually not sufficient...a specific BB data plan is normally required.
Lastly, do be aware that AppWorld is merely a portal, vending apps developed mainly by others. As such, it is not your exclusive procurement source -- there are others that you can try (e.g., Handango, Handmark, BPlay, GetJAR or Mobihand). I have found that there are very few apps that are exclusive to AppWorld. You can search the on-line catalog and then search out other procurement sources, including quite often the developer website itself.
Good luck!
Occam's Razor nearly always applies when troubleshooting technology issues!
If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
Join our BBM Channels
BSCF General Channel
PIN: C0001B7B4   Display/Scan Bar Code
Knowledge Base Updates
PIN: C0005A9AA   Display/Scan Bar Code

Similar Messages

  • ResourceException: Access not allowed (when trying to grab a connection from weblogic pool)

    I am using WLS7 with SP1.
    I just recently migrated from WLS6.0. When my code tries to grab a
    connection from the pool, it throws an exception
    java.sql.SQLException: Pool connect failed:
    weblogic.common.ResourceException: Access not allowed
    at weblogic.jdbc.pool.Driver.connect(Driver.java:202)
    Does anyone know if anything changed from 6.0 to 7?
    Here is a piece of the code that throws exception.
    Driver driver =
    (Driver)Class.forName("weblogic.jdbc.pool.Driver")
    .newInstance();
    conn = driver.connect("jdbc:weblogic:pool:" +
    dbName, null);
    Thanks in advance.

    Hi Jung,
    "Jung Yang" <[email protected]> wrote in message
    news:[email protected]...
    Do you know how to change security setting on the connection pool?
    Thanks.WebConsole:
    1.Compatibility Security => ACLs
    Create a new ACL,
    name : weblogic.jdbc.connectionPool.yourPoolname
    permission : reserve, reset
    group : everynone
    2.Services => JDBC => Connection Pool
    Create a new Connection Pool
    ACL Name : weblogic.jdbc.connectionPool.yourPoolname
    In 'Target' tab, choose server and click the Apply button
    Slava
    >
    "Slava Imeshev" <[email protected]> wrote in message
    news:[email protected]...
    Hi Jung,
    Could you try providing weblogic user name and password
    in the properties?
    Could you also check security setting of the connection pool?
    Regards,
    Slava Imeshev
    "Jung Yang" <[email protected]> wrote in message
    news:[email protected]...
    Well that is exactly what I am doing. The variable dbName is database
    connection pool name that I created in weblogic console. Again, it
    worked
    in WLS6 but after migration, it stopped working.
    Thanks.
    "Mitesh Patel" <[email protected]> wrote in message
    news:[email protected]...
    In my code I am supplying name of the connection pool already
    created
    in
    weblogic server. I am asking you to get connection from the pool
    using
    pool
    driver.
    In your case you are trying to create connection straight to
    database
    using pool
    driver.
    What I am asking is pass name of the connection pool instead of
    database
    name.
    Thanks,
    Mitesh
    Jung Yang wrote:
    What would be the difference between your code and mine? Mine
    simple
    appends dbName string value for connection pool name at the end of
    "jdbc:weblogic:pool:"? And why same exact code would work in WLS6and
    not
    work in WLS7?
    Thanks.
    "Mitesh Patel" <[email protected]> wrote in message
    news:[email protected]...
    conn = driver.connect("jdbc:weblogic:pool:" +
    dbName, null);Instead of doing this what if you use
    Connection conn =
    myDriver.connect("jdbc:weblogic:pool:myConnectionPool", null);
    Will you please try this and see if that helps?
    Mitesh
    Jung Yang wrote:
    Isn't that exactly what I posted for my code piece?
    Thanks.
    "Mitesh Patel" <[email protected]> wrote in message
    news:[email protected]...
    Try As described below:
    The following example demonstrates how to use a database
    connection
    pool
    from a servlet.
    Load the pool driver and cast it to java.sql.Driver. The
    full
    pathname
    of
    the driver is weblogic.jdbc.pool.Driver. For example:
    Driver myDriver = (Driver)
    Class.forName("weblogic.jdbc.pool.Driver").newInstance();
    Create a connection using the URL for the driver, plus
    (optionally)
    the
    name of the registered connection pool. The URL of the pool
    driver
    is
    jdbc:weblogic:pool.
    You can identify the pool in either of two ways:
    Specify the name of the connection pool in a
    java.util.Properties
    object
    using the key connectionPoolID. For example:
    Properties props = new
    Properties();props.put("connectionPoolID",
    "myConnectionPool");Connection conn =
    myDriver.connect("jdbc:weblogic:pool", props);
    Add the name of the pool to the end of the URL. In this case
    you
    do
    not
    need a Properties object unless you are setting a username
    and
    password
    for using a connection from the pool. For example:
    Connection conn =
    myDriver.connect("jdbc:weblogic:pool:myConnectionPool",
    null);
    Note that the Driver.connect() method is used in theseexamples
    instead of
    the DriverManger.getConnection() method. Although you may
    use
    DriverManger.getConnection() to obtain a databaseconnection,
    we
    recommend
    that you use Driver.connect() because this method is not
    synchronized
    and
    provides better performance.
    Note that the Connection returned by connect() is an
    instance
    of
    weblogic.jdbc.pool.Connection.
    Call the close() method on the Connection object when youfinish
    with
    your
    JDBC calls, so that the connection is properly returned to
    the
    pool. A
    good coding practice is to create the connection in a try
    block
    and
    then
    close the connection in a finally block, to make sure the
    connection
    is
    closed in all cases.
    conn.close();
    Mitesh
    Jung Yang wrote:
    I am using WLS7 with SP1.
    I just recently migrated from WLS6.0. When my code tries
    to
    grab a
    connection from the pool, it throws an exception
    java.sql.SQLException: Pool connect failed:
    weblogic.common.ResourceException: Access not allowed
    at
    weblogic.jdbc.pool.Driver.connect(Driver.java:202)
    Does anyone know if anything changed from 6.0 to 7?
    Here is a piece of the code that throws exception.
    Driver driver =
    (Driver)Class.forName("weblogic.jdbc.pool.Driver")
    .newInstance();
    conn =
    driver.connect("jdbc:weblogic:pool:"
    +
    dbName,
    null);
    >>>>>>>>>
    Thanks in advance.

  • We get error messages when trying to download in-app purchases on the iPad using an iTunes card.This worked on other ipads.  Just not this particular one.

    We get an error message when trying to download in-app purchases on the iPad using an iTunes card. This worked on other ipads.  Just not this particular one.
    We have tried deleting and re-installing the apps and attempting the in-app purchase again.  Still get error messages. Any suggestions?

    hello Mac.INXS, please [[Clear the cache - Delete temporary Internet files to fix common website issues|clear the cache]] & [[Delete cookies to remove the information websites have stored on your computer|cookies from mozilla.org]] and then try logging into AMO again.

  • No matter how many times I reet my password, it will not work when trying to sign intothe App Store through my iPhone4S.

    No matter how many times I reset my password, it will not work when trying to sign intothe App Store through my iPhone4S.

    What is the error that you are seeing? Try to login using another App like GameCenter or iMessage? Also try logging in to other Apps like Facebook to check if it is your Internet connection problem.

  • HT1349 What to when trying to download an app and get message "could not sign in, An unknown error has occurred"

    What do you do when trying to download an app from App Store and get message: "could not sign in, an unknown error has occurred."

    Sign out of your account, restart the iPad and then sign in again.
    Settings>iTunes & App Store>Apple ID. Tap your ID and sign out. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    Go back to Settings>iTunes & App Store>Sign in and then try again.

  • When trying to download an app, a message pops up and says "cannot download due to not enough memory". I have checked there seems to be enough memory on pc and ipod?

    when trying to download an app, a message pops up and says "cannot download due to not enough memory". I have checked there seems to be enough memory on pc and ipod?

    I followed the advice of another user, cleared my payment information and re-entered my credit card info and this took care of it, I was immediately able to download new purchases. Apparently they called and got this info from someone at Apple, there is some sort of "bug".  worked for me...hope it helps you out too!!

  • HT204053 When trying to download an app I'm asked for set up three security questions. I can set up the first 2 but it doesn't allow me to to select the third question! What am I doing wrong?

    When trying to download an app on my iPad 3 it asks my to create and answer 3 questions. I can complete the first 2 but the system doesn't allow me to complete the 3rd question! Can anyone help.

    Welcome to the Apple Community.
    You might try to see if you can change your security questions. Start here, change your country if necessary and go to manage your account > Password and Security.
    I'm able to do this, others say they need to input answers to their current security questions in order to make changes, I'm inclined to think its worth a try, you don't have anything to lose.
    If that doesn't help you might try contacting Apple through Express Lane (select your country, navigate to iCloud help and enter the serial number of one of your devices)

  • Why do I keep getting an unknown error when trying to download an app from the app store on my iPod touch 4th generation when I put in the correct password?

    I keep getting the same unknown error has occurred when trying to download an app what is wrong?

    as an example.. from the sprint forum for a different device (unsure what device.. it's just not an iphone since no iphone or ios device has these settings -- ive seen this advice several times and I believe it's some form of android.. but not sure)
    advice from the carrier advisor --
    "Clear data in the Dialer and Dialer storage.... under manage Applications> All.
    That is Settings - Applications - Choose All to view All choices - then find Dialer and clear the Data. Repeat this for the Dialer Storage as well. I personally also deleted the message thread first from the text message window and my log history which is a menu item from your call screen."
    and another for you from a customer -- it is sprint again.. but this time a Samsung Epic
    "OMG ... if someone can't tell me how to fix this "9230: Message sent using invalid number of digits..." error, I'm going to scream.  My husband and I both have Sprint Epic phones and love them EXCEPT for this one problem! Help!"
    Maybe they should sue Samsung?

  • KEEP GETTING "Unsupported 16-Bit Application" when trying to download Blackberry Link-I need music on my device!!

    KEEP GETTING  "Unsupported 16-Bit Application" when trying to download Blackberry Link.  Im trying to sync music into my new Z10.  here is the whole error message:
    "\??\C:\User.....................cannot start or run due to incompatibity with 64-bit versions of Windows.  Please contact software vendor to ask if a 64-bit Windows comapatible version is available
    Any know how to transfer music without using this Blackberry link?  Is there a quick fix to my problem? Any help would be appreciated.  Thanks

    Just download the Link application directly to your PC, not with your BlackBerry connected.
    There's no need for the connection while your simply downloading the install file.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • When trying to download an app I get cannot connect with iTunes store

    When trying to download an app I get a message (can not connect to iTunes store) any ideas?

    There are a number of threads from other people reporting the same iTunes connection issue, it looks like there might be a problem at Apple's end - but you could try logging out of your account on the iPad by tapping on your id in Settings > Store and then log back in and see if it then works, but it probably won't until Apple's fixed it

  • HT2534 When trying to download an app ie free or chargeable takes me to security but won't open the third security question

    When trying to download an app free or chargeable I'm taken to security (as think new iPad) but won't open third security question therefor cannot go any further.

    I note from a poster on another thread that they have been successful! You might want to keep trying.

  • When trying to download a app, I am being told my Apple ID has been diabled.  why is this happening?  how can I fix? Please help!

    When trying to download an app, I am being told my Apple ID has been disabled!  Why is this happening?  How can I fix?  Please Help.

    We are fellow users, we won't know why it's disabled. You might be able to re-enable it via this page : http://appleid.apple.com, then 'reset your password'
    You might then need to log out of your account on your device by tapping on your id in Settings > Store (Settings > iTunes & App Stores on iOS 6) and then log back in so as to 'refresh' the account on it
    If that doesn't fix it then you might need to contact iTunes Support : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page

  • When trying to download a app from app store it keep asking for a verification.

    When trying to download a app from app store it keep asking for a verification.

    This is happening to everyone, Apple Store is facing an issue. Started last night.
    http://www.imore.com/itunes-and-app-store-terms-and-conditions-stuck-infinite-lo op-locking-out-customers

  • Authentication error when trying to download an APP (free or otherwise).

    I have a Droid phone and have recently started receiving the following error message when trying to download an app (free).  Authentication is required.  You need to sign into your Google account.  It gives you an OK button, but nothing else to help. 

        Hello Tim8581,
    I wanted to reach out to you to see if you are still experiencing this issue. We know how excited that you are to get the  most out of your wirelsss device. May I ask what model device do you have? Also, have you tried the steps that SuzyQ provided? Thanks SuzyQ. If so then what was the results? If more assistance then please share the status of the issue so we can help.
    Thank you...
    ArnettH_VZW
    Follow us on Twitter @VZWSupport

  • When trying to download an APP, it's requesting answers to 3 security questions and it hangs up the iPad when clicking the drop down for the questions...any ideas?

    When trying to download an APP, it's requesting setup for answers to 3 security questions and it hangs up the iPad when clicking the drop down for the questions...any ideas?

    Had to do a hard reboot on the iPad and we were able to get the questions to pop up. Now it's just slow downloading the apps.

Maybe you are looking for