Link Crashes when loading itunes Library

Hi
I am trying to get Link up and running. I will try to summarise to get rid of the obvious questions.
It installs no problem, i can add the device and select iTunes as my library.
the majority of my itunes library is on a flash drive (which i make sure is always in before machine boots up. If you open itunes all is there and plays fine.
When Link opens it hangs for a couple of minutes and i leave it alone as it is a big library to load. It then opens but windows says that it has crashed, it tends to load between 8,000 and 35,000 songs. But for the life of me I cannot get it to load the lot properly.
I have re-installed, rebooted and tried again. I have backed up the itunes library and tried again with a smaller library locally held and it is fine. Can anyone help?

Hey IanHetherington,
Welcome to the BlackBerry Support Community Forums.
Thanks for the question.
To get the resolution of this issue, I am going to need to get some BlackBerry Link log files.  Please contact your network service provider and ask to be transferred to BlackBerry so a ticket can be created so the log files can be reviewed.
I appreciate your patience.
Cheers.
-ViciousFerret
Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
Be sure to click Like! for those who have helped you.
Click  Accept as Solution for posts that have solved your issue(s)!

Similar Messages

  • 64 bit JVM Crash  when loading shared library

    I wrote a simple code to test loading of 64 bit shared library in linux. My JVM crashes on System.loadLibrary method.
    JAVA CODE
    import java.awt.Dimension;
    import javax.swing.JFrame;
    public class TestJNI extends JFrame{
            public native void init();
            static{
                    System.loadLibrary("testJNI");
            public static void main(String ...args){
                    TestJNI test = new TestJNI();
                    test.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
                    test.setSize(new Dimension(500,500));
                    test.setVisible(true);
                    System.out.println("Before init");
                    //test.init();
                    System.out.println("After init");
    } Header file created using javah
    /* DO NOT EDIT THIS FILE - it is machine generated */
    #include <jni.h>
    /* Header for class TestJNI */
    #ifndef _Included_TestJNI
    #define _Included_TestJNI
    #ifdef __cplusplus
    extern "C" {
    #endif
    #undef TestJNI_FOCUS_TRAVERSABLE_UNKNOWN
    #define TestJNI_FOCUS_TRAVERSABLE_UNKNOWN 0L
    #undef TestJNI_FOCUS_TRAVERSABLE_DEFAULT
    #define TestJNI_FOCUS_TRAVERSABLE_DEFAULT 1L
    #undef TestJNI_FOCUS_TRAVERSABLE_SET
    #define TestJNI_FOCUS_TRAVERSABLE_SET 2L
    #undef TestJNI_TOP_ALIGNMENT
    #define TestJNI_TOP_ALIGNMENT 0.0f
    #undef TestJNI_CENTER_ALIGNMENT
    #define TestJNI_CENTER_ALIGNMENT 0.5f
    #undef TestJNI_BOTTOM_ALIGNMENT
    #define TestJNI_BOTTOM_ALIGNMENT 1.0f
    #undef TestJNI_LEFT_ALIGNMENT
    #define TestJNI_LEFT_ALIGNMENT 0.0f
    #undef TestJNI_RIGHT_ALIGNMENT
    #define TestJNI_RIGHT_ALIGNMENT 1.0f
    #undef TestJNI_serialVersionUID
    #define TestJNI_serialVersionUID -7644114512714619750LL
    #undef TestJNI_serialVersionUID
    #define TestJNI_serialVersionUID 4613797578919906343LL
    #undef TestJNI_INCLUDE_SELF
    #define TestJNI_INCLUDE_SELF 1L
    #undef TestJNI_SEARCH_HEAVYWEIGHTS
    #define TestJNI_SEARCH_HEAVYWEIGHTS 1L
    #undef TestJNI_OPENED
    #define TestJNI_OPENED 1L
    #undef TestJNI_serialVersionUID
    #define TestJNI_serialVersionUID 4497834738069338734LL
    #undef TestJNI_DEFAULT_CURSOR
    #define TestJNI_DEFAULT_CURSOR 0L
    #undef TestJNI_CROSSHAIR_CURSOR
    #define TestJNI_CROSSHAIR_CURSOR 1L
    #undef TestJNI_TEXT_CURSOR
    #define TestJNI_TEXT_CURSOR 2L
    #undef TestJNI_WAIT_CURSOR
    #define TestJNI_WAIT_CURSOR 3L
    #undef TestJNI_SW_RESIZE_CURSOR
    #define TestJNI_SW_RESIZE_CURSOR 4L
    #undef TestJNI_SE_RESIZE_CURSOR
    #define TestJNI_SE_RESIZE_CURSOR 5L
    #undef TestJNI_NW_RESIZE_CURSOR
    #define TestJNI_NW_RESIZE_CURSOR 6L
    #undef TestJNI_NE_RESIZE_CURSOR
    #define TestJNI_NE_RESIZE_CURSOR 7L
    #undef TestJNI_N_RESIZE_CURSOR
    #define TestJNI_N_RESIZE_CURSOR 8L
    #undef TestJNI_S_RESIZE_CURSOR
    #define TestJNI_S_RESIZE_CURSOR 9L
    #undef TestJNI_W_RESIZE_CURSOR
    #define TestJNI_W_RESIZE_CURSOR 10L
    #undef TestJNI_E_RESIZE_CURSOR
    #define TestJNI_E_RESIZE_CURSOR 11L
    #undef TestJNI_HAND_CURSOR
    #define TestJNI_HAND_CURSOR 12L
    #undef TestJNI_MOVE_CURSOR
    #define TestJNI_MOVE_CURSOR 13L
    #undef TestJNI_NORMAL
    #define TestJNI_NORMAL 0L
    #undef TestJNI_ICONIFIED
    #define TestJNI_ICONIFIED 1L
    #undef TestJNI_MAXIMIZED_HORIZ
    #define TestJNI_MAXIMIZED_HORIZ 2L
    #undef TestJNI_MAXIMIZED_VERT
    #define TestJNI_MAXIMIZED_VERT 4L
    #undef TestJNI_MAXIMIZED_BOTH
    #define TestJNI_MAXIMIZED_BOTH 6L
    #undef TestJNI_serialVersionUID
    #define TestJNI_serialVersionUID 2673458971256075116LL
    #undef TestJNI_EXIT_ON_CLOSE
    #define TestJNI_EXIT_ON_CLOSE 3L
    * Class:     TestJNI
    * Method:    init
    * Signature: ()V
    JNIEXPORT void JNICALL Java_TestJNI_init
      (JNIEnv *, jobject);
    #ifdef __cplusplus
    #endif
    #endifC code TestJNI.c
    #include "TestJNI.h"
    #include <stdio.h>
    JNIEXPORT void JNICALL Java_TestJNI_init
      (JNIEnv *env, jobject ob){
      printf("TESTING JNI CALL");
    }gcc options are as follows to get the shared library:
    gcc -fPIC -pthread -g -Wall -D_REENTRANT -I/vobs/3p/jdk1.6.0_10/linux/include/linux -I/vobs/3p/jdk1.6.0_10/linux/include/ -c TestJNI.c -o TestJNI.o
    gcc -z defs -pthread -D_REENTRANT -Wl,-soname,libnative.so -shared -o libtestJNI.so TestJNI.o -lcAny help is appreciated. I am not sure what i am doing wrong here.
    Running the same code on a 32 bit jvm with a 32 bit shared library works.

    Hi,
    I was also having a problem under 64 bit, Now I am certain that if ur Java code makes a call to the DLL, make sure that DLL is compiled under 64 bit compiler and not 32 bit compiler. This is the mistake I made and the JVM was throwing unsatisfied link error. Now this DLL (compiled under 64 bit) could call a 32 bit dll, I dont think that should be a problem.
    Hope it helps.
    Subu

  • Illustrator CS5 crash when loading variable library

    Hi,
    I've recently upgraded to CS5 from CS3. I have some template files set up that read an XML variable library and load external images and text. These were working fine with CS3. With CS5, as soon as I load a variable and try to view any of my data sets, Illustrator crashes instantly. To be more specific, the XML seems to load fine, and I can drop down the menu to see all my dataset names, but as soon as I select one, it crashes. Any ideas on this?
    Thanks,
    Murat
    *Illustrator CS5 running on Windows XP SP3
    Intel Core2 Quad CPU @ 2.50GHz
    3.00GB of RAM

    Try following steps::
    1. Update OS to 10.6.4
    2. Delete Illustrator Preferences
    3. Restart machine

  • Itunes crashes when loaded

    I am having the following error when loading itunes
    AppName: itunes.exe AppVer: 10.5.0.142 ModName: ntdll.dll
    ModVer: 5.1.2600.6055 Offset: 0000120e
    In the brief occasions that it loads and does not immediately come up with this error, if I plug in any device the whole computer crashes.
    I have tried ALL of the solutions in the troubleshooting section of the apple site.
    Does anyone have any ideas?

    Me too - exactly the same Error Signature details.   Like yours, mine occasionally comes up with the error message when itunes loads, or alternatively comes up with the error message when I try the next step - eg. opening a playlist.   I have not yet had it crash my computer - unless two random blue screens I had last week are also related.  This problem started for me only last night - 29.11.11.   Any ideas much appreciated!!

  • My itunes crash when accessing the library of IMatch

    My itunes crash when accessing the library of IMatch. I'm using Windows 7 64 bit.
    this error is occurring in the last update.

    solved the problem by removing the file TSLicense.

  • Is anybody else experiencing crashes when installing iTunes for Windows?

    Is anybody else experiencing crashes when installing iTunes for Windows?

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box (similar to those given above) are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    tt2

  • Video app hangs on loading iTunes Library through Home Sharing

    Hello,
    On my 4th gen iPad I try loading my iTunes Library, which is on a mid-2011 iMac. Home Sharing is configured and working, but when loading my library it hangs during load. See attached screenshot. The library is huge, but that shouldn't be a problem right?

    Hello,
    On my 4th gen iPad I try loading my iTunes Library, which is on a mid-2011 iMac. Home Sharing is configured and working, but when loading my library it hangs during load. See attached screenshot. The library is huge, but that shouldn't be a problem right?

  • Further GarageBand crashes when loading lessons ...

    Hi All,
    I've GarageBand installed on a Mac mini server (the new Apple ones). When I try to open any lesson it silently crashes. The
    I've seen the other thread with similar title and tried replacing the "Gill Sans.ttf" font with a "Gill Sans.dfont" from another system. Rebooted. Still crashes.
    I've fixed permissions. Still crashes.
    I tried deleting everything - everything - GarageBand related on disk and reinstalled and updated. Same problem. Crashes when loading lessons.
    The console has a whole lot of these:
    2/26/10 11:42:07 PM [0x0-0x1f01f].com.apple.garageband[2211] 2010-02-26 23:42:07.519 pkgutil[2221:903] PackageKit: * Missing bundle identifier: /Library/Receipts/Flip4Mac Web Plugins.pkg
    2/26/10 11:42:07 PM pkgutil[2221] PackageKit: * Missing bundle identifier: /Library/Receipts/php-4.3.4.pkg
    2/26/10 11:42:07 PM [0x0-0x1f01f].com.apple.garageband[2211] 2010-02-26 23:42:07.577 pkgutil[2221:903] PackageKit: * Missing bundle identifier: /Library/Receipts/php-4.3.4.pkg
    2/26/10 11:42:07 PM pkgutil[2221] PackageKit: * Missing bundle identifier: /Library/Receipts/php-5.0.3.pkg
    2/26/10 11:42:07 PM [0x0-0x1f01f].com.apple.garageband[2211] 2010-02-26 23:42:07.578 pkgutil[2221:903] PackageKit: * Missing bundle identifier: /Library/Receipts/php-5.0.3.pkg
    2/26/10 11:42:07 PM [0x0-0x1f01f].com.apple.garageband[2211] No receipt for 'com.apple.pkg.RemixTools_Instruments' found at '/'.
    which may be a result of the fact that I migrated OSX 10.5 server to OSX10.6 server.
    It also has:
    2/26/10 11:42:08 PM MIDIServer[2222] MIDIServer [2222] starting; arch=x86_64
    which seems ok.
    But crashes with this:
    2/26/10 11:42:17 PM com.apple.launchd.peruser.501[297] ([0x0-0x1f01f].com.apple.garageband[2211]) Job appears to have crashed: Bus error
    2/26/10 11:42:17 PM ReportCrash[2209] Saved crash report for GarageBand[2211] version 5.1 (398) to /Users/admin/Library/Logs/DiagnosticReports/GarageBand2010-02-26-234217server-2.crash
    I can't see anything in the crash files, except it looks like it might be trying to open a file:
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 libSystem.B.dylib 0x914c6a90 strlen + 16
    1 ...ple.CoreServices.CarbonCore 0x973a636c FSMount::makepath(unsigned long, char const*, unsigned long, char*) + 140
    2 ...ple.CoreServices.CarbonCore 0x973a2621 FSMount::_getattrs(unsigned long, char const*, unsigned long, unsigned long, FSAttributeInfo*, unsigned long, unsigned char*) + 179
    3 ...ple.CoreServices.CarbonCore 0x973a2529 FSMount::getattrs(unsigned long, char const*, unsigned long, unsigned long, FSAttributeInfo*, unsigned long, unsigned char*) + 279
    4 ...ple.CoreServices.CarbonCore 0x973ecf96 FindHFSName2Retained(void*, short*, unsigned long, unsigned long, FSAttributeInfo*, char*) + 1017
    5 ...ple.CoreServices.CarbonCore 0x973ed27c PBMakeFSRefSync + 115
    6 ...ple.CoreServices.CarbonCore 0x973ed206 FSpMakeFSRef + 45
    7 com.apple.music.apps.Logic 0x00c2cb4e LgSamplerGetFileNameForKey + 147646
    8 com.apple.music.apps.Logic 0x00a1e7f6 CSetVSong::~CSetVSong() + 1146438
    9 com.apple.music.apps.Logic 0x008d280f LgDocument_MovieFullPath + 47
    10 com.apple.garageband 0x000b66dc 0x1000 + 743132
    11 com.apple.garageband 0x00272f78 0x1000 + 2563960
    12 com.apple.garageband 0x00270257 0x1000 + 2552407
    13 com.apple.garageband 0x002713a8 0x1000 + 2556840
    Any suggestions or help most appreciated.
    Cheers,
    Ashley.
    Message was edited by: Ashley Aitken

    Have you tried to delete the downloaded version from the Applications folder and to reinstall from the AppStore?  Perhaps the download was incomplete.
    If that is not the problem,  check all your Audio Units, and other plug-ins like VST plug-ins for compatibility, see:   GarageBand for Mac (v10.0): Unexpected behavior with Audio Units plug-ins

  • Logic crashes when loading preferences

    hi!
    can anyone please help? for some reason logic has started crashing when loading the preferences. i noticed for some reason it was playing through the built in audio rather than my motu interface, so i tried loading the preferences to change it and it just crashes every time. this has happened since i reinstalled logic studio 8, because it was giving me an error message on startup that caused it to crash. the error message i was getting was saying i have the wrong pro applications support installed (of which i could not alter or upgrade for some reason). so i went for a reinstall.. and now this other problem. any help would be greatly appreciated!
    i am running logic studio 8.0.2 on a powermac dual 2ghz G5
    with 3gb ram and osx 10.5.3

    Don't wipe your hard disk! (yet)
    It's probably that your preferences have become corrupted. Go to User/Library/Preferences and trash your Logic preferences (com.apple.logic.pro.cs & com.apple.logic.pro.plist).
    Reopen Logic and see what happens. The only problem is that you will lose all your keyboard commands etc., but they're a lot easier to recreate than reinstalling and authorising everything onto your hard drive.
    Also, make a copy of your preferences once you've set everything up so that if you need to trash your preferences again sometime in the future, you can just replace them with the copies you've made.
    I guess if none of this works then you may need reinstall Logic and, at worst everything else.

  • IPhoto crashes when loading

    iPhoto crashes when loading.  I am on 9.1.2 & I think this may have started after the update was applied on the 27/4 and the error message does not mean much to me
    Process:         iPhoto [1472]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         9.1.2 (9.1.2)
    Build Info:      iPhotoProject-6050000~2
    Code Type:       X86 (Native)
    Parent Process:  launchd [409]
    Date/Time:       2011-05-06 13:01:43.756 +0100
    OS Version:      Mac OS X 10.6.7 (10J869)
    Report Version:  6
    Interval Since Last Report:          123013 sec
    Crashes Since Last Report:           20
    Per-App Interval Since Last Report:  10155 sec
    Per-App Crashes Since Last Report:   11
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    Crashed Thread:  37

    That's a different crash. When you re-installed, did you delete the receipts first?
    To re-install iPhoto
    1. Put the iPhoto.app in the trash (Drag it from your Applications Folder to the trash)
    2a: On 10.5:  Go to HD/Library/Receipts and remove any pkg file there with iPhoto in the name.
    2b: On 10.6: Those receipts may be found as follows:  In the Finder use the Go menu and select Go To Folder. In the resulting window type
    /var/db/receipts/
    A Finder Window will open at that location and you can remove the iPhoto pkg files.
    3. Re-install.
    If you purchased an iLife Disk, then iPhoto is on it.
    If iPhoto was installed on your Mac when you go it then it’s on the System Restore disks that came with your Mac. Insert the first one and opt to ‘Install Bundled Applications Only.
    If you purchased it on the App Store you can find it in your Purchases List.
    Regards
    TD

  • Error message when loading itunes

    Error when loading itunes C:\Program Files\CommonFiles\Apple\Internet Services\mmcs.dll. Verify that you have access to that directory.
    Only options I get are retry or cancel and on clicking retry the same box returns immediately... Help!

    Welcome to the Apple Community.
    Try the following steps, check whether things are working after each step where appropriate, before trying the next.
    Restart the Apple TV (Settings > General > Restart).
    Restart the Apple TV by removing ALL the cables for 30 seconds.
    Restart your router.
    Reset the Apple TV (Settings > General > Reset > Reset all settings)
    Restore the Apple TV (Settings > General > Reset > Restore)

  • TS1424 iTunes 11 crashes when accessing iTunes store

    iTunes 11 crashes when accessing iTunes store. Any suggestions?

    Try gn_id's suggestion from the following post:
    Re: iTunes 11 crashes when opening the store - no error message

  • Error 501 when loading iTunes Store in iTunes AUTOFIXED

    When i click the iTunes Store button in the right corner it says that there was an error when loading iTunes Store, and mention into brackets that it's the Error 501.i'm using a macbook pro 13.3 i7 with mountain lion.
    Thanks.
    AUTOFIXED
    i just close the iTunes app and open it again. Then the iTunes Store will work.

    When i click the iTunes Store button in the right corner it says that there was an error when loading iTunes Store, and mention into brackets that it's the Error 501.i'm using a macbook pro 13.3 i7 with mountain lion.
    Thanks.
    AUTOFIXED
    i just close the iTunes app and open it again. Then the iTunes Store will work.

  • Satellite L500-19x crashes when loading software from dvd

    Satellite L500-19x crashes when loading software from dvd. This is photoshop elements 9. Other software generally loads ok, but not always.
    Any ideas?

    Hi shownomercer,
    Have you tried the Photoshop disk in another computer to check if the installation disk is ok or not?
    What happens exactly when the computer crashes? Bluescreen?

  • VMware crashes when loading VMware Player unrecoverable error: (vmx) NOT_IMPLEMENTED d:/build/ob/bora-203739/bora/vmx/main/pollVMX.c:3981

    VMware crashes when loading VMware Player unrecoverable error: (vmx) NOT_IMPLEMENTED d:/build/ob/bora-203739/bora/vmx/main/pollVMX.c:3981

    Hi,
    Please next time do not post a full log as content of the post, instead use the browse button to attach as file.
    Also add a little bit of background information, like if you installed fresh, has it worked before, has anything changed, what is your host OS?
    The relevant part in your log appears to be:
    May 18 12:10:07.330: player-3900| Cnx_Connect: Error message: Failed to read vmware-authd port number: Cannot connect to VMX: C:\Users\Columbus\Documents\Virtual Machines\Windows XP Home Edition\Windows XP Home Edition.vmx
    May 18 12:10:07.330: player-3900|
    May 18 12:10:07.423: player| Unhandled Win32 SEH exception
    May 18 12:10:07.423: player| ----Win32 exception detected, exceptionCode 0xc0000005 (access violation)----
    Either you have some security software (firewall, antimalware, antivirus) not allowing VMware Player to connect to the vmware-authd port or your install is broken and you have to rerun the install (uninstall, reboot, install, reboot)
    Wil

Maybe you are looking for

  • Dynamic Queries in ABAP?

    Hi, I'm currently trying to develop an RFC FM that can create a dynamic query. I want to use the FM to query different tables without having to write n number of different cases. For example a particular application might need to query table xyz with

  • Do you know where session data store on server?

    hi I have a problem colud you help me? I created a servlet which includes a session and it takes two parameters and write them into html page. Now i want to know how i can see session data .I mean session doesn't create cookie so it doesn't set cooki

  • What are relevant UI element of WD Java missing in WD ABAP?

    HI experts, I have came to know that there are 14 UI elements of WD JAVA are not present in WD ABAP those are:      1.BarCodeReader      2.FunctionKey      3.PatternSequence      4.PatternTabStrip           5.PatternTray      6.RFIDReader      7.Tool

  • WCS 7.0 migration to Prime?

    We will upgrade the WLC from 7.0 to 7.3 to support HA, but looks like WCS does not support 7.3 code any more. We have lobby account on WCS to create the guest account for WLC. We then have to transfer WCS to another product-Prime. My question is is t

  • Java embedding: throw exceptions

    Hi all How can I throw an exception from a Java Embedding activity? I try this throw e but the compiler raise this error: Exception java.lang.Exception must be caught, or it must be declared in the throws clause of this method. There is no method sig