NOKIA 6021 stopped working/syncing properly after upgrading to 10.4.9

Hi,
Everything is in the tittle ... When I try with another machine with 10.4.8, there is no problem. I have try resetting the phone without any result ... Help !
Faithfully Marc vdp
Mac Mini   Mac OS X (10.4.9)   PPC

I had the same issue.
I resolved it by resetting the Sync History in the iSync Preferences menu.

Similar Messages

  • SWT in Java WebStart App stopped working on OSX after upgrading to Java 7

    Hi Forum-Readers,
    i'm maintaining a JavaWS application using SWT for our company for quite a while now. I have reports that it stopped to work on Apple OSX computers, so i started digging into it.
    It seems Apple has dropped their own Java 1.6 implementation and Oracle's Java 7 is now installed by default. An here the misery begins...
    My app started to report the known "***WARNING: Display must be created on main thread due to Cocoa restrictions. / org.eclipse.swt.SWTException: Invalid thread access" issue. Okay, it seems that -XstartOnFirstThread works for Apple's 1.6 but not for Oracle's java 7?
    After digging into it i found out that Oracle's implementation didn't do a restart with -XstartOnFirstThread during javaws init. The cause was that i've dropped signing the application's jnlp file due to some issues on the Microsoft platform. Don't care, i signed it again and next try - and i got one step further:
    Java is now restarted with -XstartOnFirstThread, but then everything freezes up. It seems there is a massive problem bringing up the AWT/Swing subsystem because javaws launcher is sitting on the main thread and AWT also want's the main thread because of the same cause we want it for SWT...
    My next try was to add an additional -Djava.awt.headless=true parameter, and at least everything comes up into my app - but i'm dying on the "Invalid thread access" issue again. I think the javaws starter or maybe AWT is still fooling around with the threads...
    BTW: i just tried it with swt-4.2.1.
    Anyone out there having the same issue or idea's what else i can try?
    Thanks & Bye,
    Chris

    I have made some progress in my RCP application. Inside my implementation of IApplication.start(), I have (ignore the sloppy error handling for now):
    if (SystemHelpers.isOSMac()) {
    private boolean isDisplayBuilt = false;
    try {
    try {
    Class<?> comAppleConcurrentDispatch = Class.forName("com.apple.concurrent.Dispatch");
    Method getInstance = comAppleConcurrentDispatch.getMethod("getInstance", (Class<?>[]) null);
    Object dispatchInstance = getInstance.invoke(null, (Object[]) null);
    Method getNonBlockingMainQueueExecutor = dispatchInstance.getClass().getMethod("getNonBlockingMainQueueExecutor",(Class<?>[]) null);
    Executor executor = (Executor) getNonBlockingMainQueueExecutor.invoke(dispatchInstance, (Object[]) null);
    executor.execute(new Runnable() {
    public void run() {
    try {
    if (display == null) {
    display = PlatformUI.createDisplay();
    PlatformUI.createAndRunWorkbench(display,
    new MyWorkbenchAdvisor()); //my implementation of WorkbenchAdvisor
    isDisplayBuilt = true;
    } catch (Throwable t) {
    //log error
    } catch (Throwable t) {
    //log error
    SwingUtilities.invokeAndWait(new Runnable() {
    @Override
    public void run() {
    while (isDisplayBuilt == false) {
    try {
    Thread.sleep(100);
    } catch (InterruptedException e) {
    //log error
    } catch (Throwable t) {
    //log error
    Putting the AWT EventQueue thread to sleep was a pretty brutal way to go, but it was the only way I could figure out to wait to get the Display object initialized and b) get the non-blocking main queue executor to actually fire the run method.
    But now I'm up against the next issue, which is that my application also uses the AWT_SWT bridge. The first time I try and get an AWT/Swing class running, I get the following:
    (AppKit Thread) A org.eclipse.swt.SWTError object with a message of:
    org.eclipse.swt.SWTError: Not implemented (java.lang.ClassNotFoundException: apple.awt.CEmbeddedFrame)
    was generated in the following call stack:
    at org.eclipse.swt.SWT.error(SWT.java:4109)
    at org.eclipse.swt.SWT.error(SWT.java:3998)
    at org.eclipse.swt.awt.SWT_AWT.new_Frame(SWT_AWT.java:145)
    at com.lspeed.workbench.AstoriaNavigatorWindowAdvisor.prepareModalFrame(AstoriaNavigatorWindowAdvisor.java:416)
    at com.lspeed.workbench.AstoriaNavigatorWindowAdvisor.createWindowContents(AstoriaNavigatorWindowAdvisor.java:325)
    at org.eclipse.ui.internal.WorkbenchWindow.createContents(WorkbenchWindow.java:1016)
    at org.eclipse.jface.window.Window.create(Window.java:431)
    at org.eclipse.ui.internal.Workbench$22.runWithException(Workbench.java:1208)
    at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run(StartupThreading.java:31)
    at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)
    at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134)
    at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3593)
    at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3286)
    at org.eclipse.ui.application.WorkbenchAdvisor.openWindows(WorkbenchAdvisor.java:803)
    at org.eclipse.ui.internal.Workbench$31.runWithException(Workbench.java:1567)
    at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run(StartupThreading.java:31)
    at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:179)
    at org.eclipse.ui.internal.UISynchronizer.syncExec(UISynchronizer.java:150)
    at org.eclipse.swt.widgets.Display.syncExec(Display.java:4240)
    at org.eclipse.ui.internal.StartupThreading.runWithoutExceptions(StartupThreading.java:94)
    at org.eclipse.ui.internal.Workbench.init(Workbench.java:1562)
    at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2567)
    at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2438)
    at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:671)
    at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
    at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:664)
    at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
    at com.lspeed.workbench.AstoriaNavigatorApp$1.run(AstoriaNavigatorApp.java:84)
    Caused by: java.lang.ClassNotFoundException: apple.awt.CEmbeddedFrame
    at java.net.URLClassLoader$1.run(URLClassLoader.java:366)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:423)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:356)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:264)
    at org.eclipse.swt.awt.SWT_AWT.new_Frame(SWT_AWT.java:140)
    ... 25 more
    due to the following cause:
    This appears to come down to the reported bug in OpenJDK: http://www.java.net/forum/topic/jdk/java-se-snapshots-project-feedback/eclipse-swtawt-bridge-broken-mac-os-x-openjdk-7u4ea
    I think I'm stuck there.

  • Rapid start stopped working on U310 after upgrading to win 8.1

    I updated my U310 to win8.1 from win8, and then I found that it kept giving me an error message "Your system does not appear to have Intel Rapid Start Technology enabled."

    kyh,
    OneKey recovery won't help with the SSD because it only affects the disk drive (C:\) and IRST/mSATA are a completely separate drive that OneKey does NOT touch.
    I just received my laptop back from Lenovo after sending it in about a week ago (they were very fast) and the return sheet says they replaced the SSD.
    My laptop is back to booting up in about 10 seconds again - however in the BIOS the IRST still says INVALID. Not sure if that matters at this point because all seems to be working well. The mSATA SSD they replaced it with is a Samsung one.

  • Adobe BRIDGE CS 5 PHOTO DOWNLOADER freezes and/or stops working during download after 2 years of use

    Adobe BRIDGE CS 5 PHOTO DOWNLOADER freezes and/or stops working during download after 2 years of use. I have uninstalled/re installed twice, cleaned system, adjusted Bridge settings with no change. And I have found no helpful troublshooting tips in forum or on web.

    Does it freeze with other type of cards.  Have seem some post that suggest an imbedded CODEC on the flash card can cause file corruption in Bridge and Mac Finder.
    To access the crash log it is officially called the event log.  To access us OS Help. 

  • I have a problem in iPhone . When you receive a contact and press the key at the top to cancel the contact screen stopped working .ataml times after the last restart device

    I have a problem in iPhone . When you receive a contact and press the key at the top to cancel the contact screen stopped working .ataml times after the last restart device

    Since restarting did not help, reset your iPhone, see: Turn your iOS device off and on (restart) and reset  http://support.apple.com/kb/ht1430
    If that still does not solve it, check, if the contact you are trying to add is problematic. Try to save a different contact. Does that work?
    If not, reinstall the Contacts app. This is only possible by restoring your iPhone, unfortunately.
    See: Use iTunes to restore your iOS device to factory settings  http://support.apple.com/kb/HT1414

  • IPhone 4 8GB white working very slow after upgrading to IOS7

    Phone 4 8GB white working very slow after upgrading to IOS7

    When you see a beachball cursor or the slowness is especially bad, note the exact time: hour, minute, second.  
    These instructions must be carried out as an administrator. If you have only one user account, you are the administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    Each message in the log begins with the date and time when it was entered. Scroll back to the time you noted above.
    Select the messages entered from then until the end of the episode, or until they start to repeat, whichever comes first.
    Copy the messages to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of it useless for solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name, may appear in the log. Anonymize before posting.

  • Why has the vibrate stopped working since the iso7 upgrade?

    Why has the vibrate stopped working since the iso7 upgrade?

    Chez440 wrote:
    Why has the vibrate stopped working since the iso7 upgrade?
    Go to Settings > Sounds.  Is Vibrate turned on?

  • Help my Ipod suddenly stopped working 2 min after unplug from car......

    Help my Ipod suddenly stopped working 2 min after unplugging it from my scion pioneer ipod ready radio. I am not sure what happened; it was working fine and charged sufficiently and i walked into the gym and tried to turn it on, and no life. I tried plugging it back into my car and it says "i-pod read error". I then tried to plug it into my computer and it doesnt even read it. I may have unplugged it when it said do not disconnect; i am not sure though.Any suggestions? thanks!
      Windows XP  

    I'd say your "Scion Pioneer" radio fried your Mini; could have been a power surge, or could be a bug.
    You might want to go the "aux jack" route next time.

  • 2008 Macbook pro left click not working properly after upgrading to 10.6.8

    I have a 2008 Macbook pro and a few months ago after upgrading to 10.6.8 my left click has been wonky.
    Using the trackpad the left click eventually gets "stuck" or stops responding and I have to push it multiple times before it does anything.  I have tried plugging in a mouse, but when I do so the mouse also behaves the same way.  The only way I seem to be able to get the clicking to work properly is to restart the computer with the mouse attached.
    I have seen threads about trackpads being messed up by swollen batteries, but my battery is brand new and looks fine, and the clicking problem extends to an external mouse, so I believe it is something with the preferences.
    I tried deleting  com.apple.driver.AppleBluetoothMultitouchTrackpad.plist   and restarting and the problem seemed to be fixed, but then after about a half hour it returned.
    Having to keep a mouse plugged into my macbook is driving me crazy, anyone know a solution?

    I started having the same issue after update.  I'm on a MacBookpro running 10.7.2
    ICalled apple and they did a remove battery reboot, a reload lion and a option/command/R/P reboot on startup and then the computer started working.  Two days later problem was back.  I then did a reboot and the computer was back to working.  Today the computer worked fine tell it went to sleep.  I had to do a hard reboot to get the Mac up and running and now no left click.  Please help. I can not use the Mac  with the trackpad, a mouse, a Bluetooth mouse, or a digital pad. All so signs of left mouse click not working.  One other item when you go to pick your user at startup the left mouse click works.  Help!

  • Plug and play speakers not working properly after upgrading to Windows 8.1

    After upgrading to Windows 8.1, my plug and play speakers do not work properly.  I have uninstalled and reinstalled them, and restarted.  When I try to play music, nothing comes out.  If I turn them off and back on, music will play for approximately 30 seconds, only from one speaker, then it turns off and fades to no sound.  They worked fine until I upgraded to Windows 8.1.  The manufacturer has not been able to successfully assist me.  Has anyone else reported a similar issue after upgrading OS software?  Any suggestions?  These are fairly new speakers, less than 2 years old, and not used very much.  I do have them installed via a K-V switch, and all other devices linked to the K-V switch are functioning properly (monitor and wireless keyboard).  Any suggestions would be greatly appreciated.

    @sisboldt ,
    Hello and thank you for posting on the HP support forums.
    So that I can better help you with your sound issue.  Please post back with your full model and product number.  Use this link to help you find the information.
    HP Notebook PCs - How Do I Find My Model Number or Product Number?
    Here is another link you may find useful.  Please give it a read before posting back with your system information.
    Advice for asking the "Very Best Question"
    Thank you again for posting and have a great day.
    Please click the "Thumbs Up" on the bottom right of this post to say thank you if you appreciate the support I provide!
    Also be sure to mark my post as “Accept as Solution" if you feel my post solved your issue, it will help others who face the same challenge find the same solution.
    D5GR
    I work on behalf of HP

  • Nokia 500 stops working after start.

    hi,
    after i updated my nokia 500 to belle,it has stop working after i start.touchscreen works for some seconds then it stops and no keys are working as well.i have to take battery out to restart but again same problem.can anyone halp please.
    Solved!
    Go to Solution.

    Hi luffy007,
    Thanks for your post and welcome to the Nokia forum.
    We are really sorry for this inconvenience.
    In order to fix this issue, I would advise you to update again your phone via Nokia suite.
    If the problem persists, I would suggest you to perform a hard reset. First of all, back up your data using Nokia Suite (Tools > Back up). Once your data is fully backed up,  type *#7370# on the keypad.  Default lock code is 12345.
    The hard reset will dellete all your personal information, that's why a back up is very important.
    If none of these solutions solves your issue.  I would invite you to visit your local Nokia care point to get the phone checked.  If it needs repair, it could be done there.
    Let us know how you get on and feel free to post any other questions you may have.
    Regards,
    Pfrancoise
    If this post has helped you to solve this issue, please press the "accept as solution" icon. Kudos would always be appreciated.

  • Nokia maps 2.0 stopped working on E90 after I used...

    Nokia maps 2.0 stopped working on my E90 after I used maps downloader 2.0. How can i resolve it?
    Solved!
    Go to Solution.

    Try to restore factory settings by going to Menu > tools > settings > general > factory settings.
    Or simply key in *#7780# when on stand by.
    The code by default is 12345.
    If this does not help then you may wanna try to re-install the maps application by going to http://europe.nokia.com/explore-services/maps/download
    Download and install the latest version as yours might have been corrupted.
    Mark me a KUDOS if this has helped...

  • Display as Key and Name Not working properly after upgrade to Bi7.0

    Hi Bw Guru's
    Recently we have upgrade our BW 3.5 system to BI 7.0 (Only system upgrade not applications ).
    after the upgrade we are facing lot of issues with Bex Analyzer. The following are some of the issues
    1) In BW3.5 after the execution of Workbook or query ,we can convert to local currency .
       Right click on workbook -> Currency translation-> Database currency .
        but after upgrade to BI7.0 this is not working ..
    2) Characterstic Right click on workbook Dispaly as Key and Name is also not working ..
    I know that Currency translation in BI7.0 works in different way compare to BW3.5 .we can use alternate option like By Target Currency from Database currency to convert to local currency and it is working fine in Bex,but businesss users want more friendly way ...because to select the above option they have to enter local currency and rate type ...
    Do you we have any notes available for the above solutions ..?Do we need to upgrade Bex version also..?Is there any document which describe how the above things works after system upgraded to BI7.0?
    Please suggest me..
    Thanks in advance
    Shu Moh.

    Dear Harita
    The first issue Currency translation in query or workbook is solved with SAP note 1119549.For second issue we have not found solution until now ,Once we find the solution we will update you..
    Shu Moh

  • Wifi is not working properly after upgrading 7.1.1 onmy i4s

    Dear Apple
                      i realy appriciate on your work ..right now i am suffreing from a problem that one i mentioned in subject .sometime my wifi is working good and sometime it shos dead to me ..but now its not working well after upgrading my phone on 7.1.1....
    its my humble request please find a solution and provide me as soon as possble..
    my totally work on wifi .
      and sometime it goes hang in setting when i come on setting folder and clicked on wifi its get hang and also showing wifi is not availabe..please provide me best solution
      Thanx & Regards
        Sam
      +91-92555-04628

    settings - general - reset - reset network settings.

  • Organize by conversation is not working properly after upgrade to Lion

    After upgrading from 10.6 to 10.7 I've figured out that Mail Application is not very accurate with organizing by conversation. Mail from Snow Leopard was pretty nice. But after upgrade it started to make several conversation. This is very annoying especially when I'm working with support tickets.
    Here is one of the example:
    Mail 10.7 ( Lion )
    [xxx.com #14531] Company Ecuador: training/refresh
    [xxx.com #14531] Company Ecuador: training/refresh
    RE: [xxx.com #14531] Company Ecuador: training/refresh
    RE: [xxx.com #14531] Company Ecuador: training/refresh
    [xxx.com #14531] Company Ecuador: training/refresh
    [xxx.com #14531] Company Ecuador: training/refresh
    Mail 10.6 ( Snow Leopard )
    [xxx.com #14531] Company Ecuador: training/refresh
    [xxx.com #14531] Company Ecuador: training/refresh
    RE: [xxx.com #14531] Company Ecuador: training/refresh
    RE: [xxx.com #14531] Company Ecuador: training/refresh
    [xxx.com #14531] Company Ecuador: training/refresh
    [xxx.com #14531] Company Ecuador: training/refresh
    I also tried Mozilla Thunderbird. It is organizing by thread very accurate.
    Is there any way how to configure this in Mail? May be I'm doing something wrong?
    I like all new features of new Mail programm, but it wi very annoying.
    Thanks,
    Shony.

    Hi Sundar & Rakesh
    I've followed Sundar's request in the previous thread we worked on together to provide further assistance here:
    ** Scenario Summary **
    The portal Work protect mode value is set to '3' ("Choose action in popup on unsaved data") When we edit a standard ESS java Web Dynpro application and click exit, the portal should show us the Work protect mode popup. Instead, the portal exits to the overview page and when we try to navigate away from the overview page, it shows the work protect mode window. This was working fine before upgrade to SAP NW 7.4 SP 5.
    Ok the first point of reference and analysis here is to check and review: Workprotect mode via the following navigation path:
    System Admin-> System Configuration -> Service Configuration -> Under one of the services: Work protect mode property.
    Now in terms of this popup kindly ensure the configurations are setup accordingly as per the following document:
    http://scn.sap.com/docs/DOC-2513
    What is the setting of WDPortalWorkProtectMode.setApplicationDirty ?
    Work Protect Mode
    http://help.sap.com/saphelp_nw04s/helpdata/en/45/b76f4169e25858e10000000a1550b0/content.htm
    Lastly have you attempted to change the property value and restarting the service ?
    Restart the config by right clicking on com.sap.portal.epcf.loader. Click Administrate ->restart
    Kindly update me as per your findings.
    Kind Regards
    Troy Cronin - Enterprise Portal Support Engineer.

Maybe you are looking for

  • How to I add a background image in an Encore slidehsow?

    How do I add a background image in an Encore slidehsow? Currently the slideshow has a black background and I would love to be able to change that to an image.

  • ECC 6.0 Client Copy - Source Cl User Master?

    When completing a client copy I have created the new client using SALE - Logical Systems - Define Logical System I created a test client 900 (which I would like to build from our golden client 200) I have a couple of questions.  From the documentatio

  • T codes for user roles

    hi can any body help with  T code to create user roles in solution Manager and IMP T codes relating to this thanks padma

  • SetRollbackOnly() doesn't work with Oracle

    Hi all, I'm using an Oracle database and Weblogic server. However, when I execute the following code (which is contained within an ejb session bean method): // Lookup datasource Context ctx = new InitialContext(); DataSource ds = (DataSource) ctx.loo

  • SMB connection time not displayed

    Dunno if this goes under this topic or if there's one more suited to Windows questions, but here goes: I'm running 10.4.6 Server on an XServe, mostly for Windows XP clients. I've set up Windows Services and all clients access a few folders shared on