JPopupMenu won't die

Hi,
I'm using a JPopupMenu on a JList and I'm experiencing an odd problem.
The menu never actually closes itself under a certain circumstance.
Say for instance you invoke the popup menu. If you click outside the frame, the menu closes fine. However, if you minimize the frame while the popup menu is displayed, things get weird when you restore it. The menu is still there, but in the form of a solid gray box. All lettering is gone and no highlighting occurs if I move the cursor over it. I have to invoke the popup menu again with a right click if I want the thing to actually disappear.
I have dug through the forums in an attempt to find a solution. I didn't find anything that addressed my specific problem, but found things that might apply. None have worked. I have tried the following:
popupMenu.setVisible(false);
MenuSelectionManager.defaultManager().clearSelectedPath();
remove(popupMenu);
Is this a bug, or am I doing something incorrectly?
Thanks for your help.

Thank you for your reply. I tried your suggestion, but got the same results. I have coded up a demo program that will reproduce the problem. In addition, those who are interested can (for now) view screen caps of this issue at http://marble.sru.edu/~kjl4608/jpopupmenu.html
Thanks for your help
Demo - test.java:import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;
public class test extends JFrame
   private Container container;
   private JPopupMenu popupMenu;
   private DefaultListModel listModel;
   private JList list;
   public test()
      super("DEMO");
      setSize(100,210);
      container=getContentPane();
      container.setLayout(new BorderLayout());
      listModel=new DefaultListModel();
      doList();
      createPopupMenu();
   public static void main(String[] args)
      test frame=new test();
      frame.show();
   private void createPopupMenu()
      popupMenu=new JPopupMenu();
      for(int i=1;i<5;i++)
         popupMenu.add(new JMenuItem("Choice "+i));
      MouseListener popupListener=new popupListener();
      list.addMouseListener(popupListener);
   private void doList()
      for(int i=1;i<=10;i++)
         listModel.addElement("Item"+i);
      list=new JList(listModel);
      container.add(list,BorderLayout.CENTER);
   //class is nested
   private class popupListener extends MouseAdapter
      public void mousePressed(MouseEvent e)
      {  maybeShowPopup(e);  }
      public void mouseReleased(MouseEvent e)
      {  maybeShowPopup(e); }
      private void maybeShowPopup(MouseEvent e)
         if(e.isPopupTrigger())
            popupMenu.show(e.getComponent(),e.getX(),e.getY());
            int row=list.locationToIndex(e.getPoint());
         list.setSelectedIndex(row);
}

Similar Messages

  • JPopupMenu won't disappear after using it!

    I'm using a JPopupMenu on a JTable. When I rightclick on a line in my table, I display a dialogbox to make some selections which you can close by clicking an OK button. The problem is, that when I close the dialog box the JPopupMenu won't go away. More exact: Parts of it persist on the screen, but it is more like a background image, since it then is no longer functional (menu items are not highlighted etc.). Does anybody know a workaround to this problem why the pop up menu doesn't go away after using it?

    Have you tried firepopupMenuCacelled() ??
    This is a method of JPopupmenu that notifies listeners that it hacs been cancelled.... ??
    Or maybe a mouse removed listener event to close the JPopupMenu... ??

  • Problem with processes that just won't die...

    Hi,
    first off, hullo everybody
    I'm new to Arch Linux, but I do already like it very much. I have just installed it on my workstation and it works fine, except for the following problem.
    My home directory here is mounted via NFS from a central server. My username is malte (we're using YP/NIS for central authentication) and my home dir is /WW/home/malte/
    The network file system that is mounted at boot time is /WW
    malte@bombadil $ grep nfs /etc/fstab
    quarterback:/WW    /WW           nfs       defaults               0      0
    Everything is setup at boot time automatically and all works fine so far. However, when I reboot my machine using sudo reboot, or even when cleanly logging out and using the Shutdown/Reboot button in GDM, what happens is that Arch tries to unmount the net file systems (that is, /WW in this case), but fails and outputs
    /WW: device is busy
    (or something to that effect); so it gives up, and goes on shutting down all the other services, like the network etc. At the very end, when "Unmounting all filesystems", it then again tries to unmount the net file system, which of course won't work since the network is already shut down. It tries for about a minute or so before timing out, giving up and just rebooting
    This of course is quite annoying, as I have to wait more than a minute each time I want to reboot (or I would have to press the reset button on the computer, which I really don't want to).
    So why doesn't Arch succeed in unmounting the net file system when it should? Using lsof, I have traced down the problem further:
    When I do not login as user in GDM after booting up the system, but immediately reboot again after GDM has just been started, there is no problem: /WW is unmounted properly, and my system reboots flawlessly.
    The problem is when I log in to my WM as user. Even if I log out cleanly to GDM again, there are two processes belonging to user malte that go on living and that access to /WW/home/malte, and I suppose that is why unmounting fails at reboot time, saying the device is busy.
    I have found out that (and which these processes are) by closely observing the output of watch 'lsof | grep WW' run as root on vc/1, just after I log out from my WM as user:
    root@bombadil $ lsof | grep WW # executed closely after logging out as user malte
    menu-cach 3410  malte  cwd       DIR               0,16     1536    8785908 /WW/home/malte (quarterback:/WW)
    gam_serve 5391  malte  cwd       DIR               0,16     1536    8785908 /WW/home/malte (quarterback:/WW)
    More information on those two processes:
    root@bombadil $ ps aux | grep -e gam_serv -e menu-cach
    malte     3410  0.0  0.1  41540  2680 ?        S    14:46   0:00 /usr/bin/menu-cached
    malte     5391  0.0  0.0  17444  1476 ?        S    15:38   0:00 /usr/lib/gamin/gam_server
    root      5473  0.0  0.0   9324   740 tty1     R+   15:38   0:00 grep -e gam-serv -e menu-cach
    So! In short, even after logging out, menu-cached and gam_server keep on living, and access to /WW/home/malte, and that is why when I try to reboot, Arch does not succeed in unmounting /WW, and that is why it tries to unmount it again at a later time, after networking has already been shut down, and that is why it waits for a time-out for about a minute at the end of the reboot procedure.
    In fact, gam_server only keeps on living for about 20 seconds after I logged out, then it is terminated. As for menu-cached, it goes on and on living, at least for 5 minutes, which is when I got tired of watching the output of watch 'lsof | grep WW' ;-)
    Any ideas how this could be remedied? Ideally, I'd like to be able to reboot using sudo reboot rather than by logging out and using GDM to reboot, but I guess that then there will be even more processes alive and accessing the NFS file system when already Arch tries to unmount it.
    Oh yes, maybe this is of some interest also:
    malte@bombadil $ grep DAEMONS /etc/rc.conf
    # DAEMONS
    DAEMONS=(syslog-ng network portmap nfslock @netfs ypbind sshd crond)
    Please help
    Cheers,
    Malte
    Last edited by einheitlix (2009-03-31 14:20:35)

    I have the same problem.  menu-caches doesn't die after user logs out of the session (don't have the gamin issue though).  I too am running LXDE.  When a different user logs in via gdm you'll still see the menu-cached processes for other users and I end up having to kill them as root.  I do believe this is a bug with either menu-caches and/or LXDE (or perhaps, more specifically, its session manager).  I've looked high and low through the system to figure out where menu-cached is invoked from and for any sort of associated configuration file to no avail.  I'm left with the conclusion that the invocation of menu-cached is hard-coded into start-lxde. 
    As a ugly-hack workaround you might try making a shell script like the following in /etc/gdm/PostSession/ directory:
    #!/bin/sh
    killall menu-cached
    This of course is only applicable for those running gdm as their display manager.  Also don't forget to make it executable.
    I would imagine that menu-cached not closing on user logout is very much a bug.  Or perhaps, more precisely, something that hadn't gotten put in yet.  Afterall, LXDE is still a relatively new desktop.  A good one at that so far, if you don't mind some of the missing polish that its dev haven't had a chance to add yet.
    If someone else knows a more elegant solution than that please let me, and the other LXDE users, know.
    Last edited by PingFloyd (2009-04-04 02:08:29)

  • Zombie email message won't die! $1 bounty to anyone who can solve this.

    I have a message that absolutely will not die. I've tried everything I can think of to delete it, but it keeps coming back. I've tried moving it from one mailbox to another, killing it with the delete key, killing it by cutting it (Command-X), but it lingers on. At this point, it only shows up in the index with a subject and date, but the content of the message is gone. I've tried rebuilding the mailboxes a number of times, but it always reappears. I've tried logging into my various accounts through the web interface, but it doesn't exist on the servers anywhere, it's only local as far as I can see.
    In my last attempt to get rid of it, I scanned my ENTIRE HARD DRIVE for the string of text containing the subject line using grep, and narrowed it down to a few files in the ~/Library/Mail folder, which I deleted through the Terminal using rm. I then re-opened Mail and rebuilt the mailboxes, and the email STILL appears. It will no longer let me move the message to another mailbox, however, but I can't get the damned thing to disappear.
    I will PayPal $1 to anyone who can come up with a solution that doesn't involve recreating my Mail accounts. May the game begin!

    Hello,
    Are you using an IMAP or POP account?
    Anything you do in the Terminal, Finder or some third party Mail app enhancers will very often mess up the index, which appears to be a symptom of.
    I think you should force a reindexing by deleting the Envelope Index. With IMAP or Exchange account, forcing reindexing requires removing the account folder. See:
    http://docs.info.apple.com/article.html?path=Mail/4.0/en/14019.html
    Ask any questions needed to get comfortable with doing this.
    Ernie

  • ITunes 10 starting conhost.exe and it won't die

    I updated to the latest version of iTunes about 3 weeks ago (haven't run it in over a week, due to this problem). Immediately after installing, I began seeing conhost.exe start multiple times. It took me a week to figure out which installed software was causing the issue, and narrowed it down to iTunes.
    When iTunes runs (with or without its various services started), it starts conhost.exe. Whatever it is running in that console causes every other process that starts after conhost.exe starts to never end. I had taken to killing the conhost.exe processes, but they would simply restart when the iTunes services were running.
    Basically, what this means is that when iTunes and related services were running in the background, HUNDREDS of processes that Windows starts and stops automatically would NEVER DIE. I once came home to find over 500 processes running, and before I figured out it was iTunes causing the problem, had to restart my computer every night when I got home, because the computer wouldn't respond. Each of those processes may have been small, but there were hundreds of them, taking up all available RAM.
    In case anyone is curious (which I'm sure may happen), I'm running on a self-built Core 2 Quad 2.0GHz, 8GB of RAM, Windows 7 Ultimate x64, with somewhere near 3TB of storage space (approximately 60% of which is available). There are no current hardware issues, all drivers are up to date, and air flow through the case is taken care of by 8 case fans. Keeps my processor temps right around 100F (which is a lot cooler than they were over the summer).
    The iTunes.exe version information says it is version 10.0.0.68. I know there's a 10.0.1 out now, but can't find out whether or not it resolves this issue.
    Anyone have any ideas? This may be specific to Windows 7 x64; I haven't been able to find any solutions in my searching, both here and on Google.
    Thanks.

    Empty/corrupt library after upgrade/crash
    Hopefully it's not been too long since you last upgraded iTunes, in fact if you get an empty/incomplete library immediately after upgrading then with the following steps you shouldn't lose a thing or need to do any further housekeeping. In the Previous iTunes Libraries folder should be a number of dated iTunes Library files. Take the most recent of these and copy it into the iTunes folder. Rename iTunes Library.itl as iTunes Library (Corrupt).itl and then rename the restored file as iTunes Library.itl. Start iTunes. Should all be good, bar any recent additions to or deletions from your library.
    See iTunes Folder Watch for a tool to catch up with any changes since the backup file was created.
    When you get it all working make a backup!
    tt2

  • The Pop-up That Won't Die In Pages Tracking

    Pages version 4.1 (923) running on Lion, OSX 10.7
    When you turn on Tracking, an annoying translucent post-it pops up—no matter where you put your cursor. It tells you the last thing you did in the document, and when you did it—like that's something you need to know.
    And it won't go away until you click someplace else in the document.
    AND there's no way to turn the feature off. Really, I looked everywhere in preferences, and an Apple Pages specialist confirmed that on the phone.
    I swear, it's as bad as the paperclip in MS Word.
    OH! And on Lion -- the damned thing stays on the screen when you switch apps. I'm looking at one right now at the bottom of the screen, while I'm in Safari. And it MOVES—now it's on top of this message's menu bar. It appears and disappears. To get rid of it, I'd have to switch pack to Pages and click somewhere in the doc. It's like a villain in Doctor Who.
    Since there's no way to turn it off in the program, that leaves the terminal—which I've never used but am willing to brave if someone would be so kind as to tell me what the frak to do and how to do it?
    Pretty please?
    Or is there someone smart enough write an Applescript or patch?? I'm dyin' here.
    Thank you in advance,
    outlaw

    As far as I know, the local menu entitled "Bulles de suvi" in French isn't deeply buried !
    Check the item "Hide All" and, what a wonderful surprise, the post-its will no longer pop.
    To Peter's attention, it's not a system feature, just a Pages's documented one
    Yvan KOENIG (VALLAURIS, France) dimanche 7 août 2011 16:59:24
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.0
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • Ken burns effect won't die

    I want to globally turn off the Ken Burns effect for my 722 slides in my iMove slide show. I have clicked on Project Properties, Timing, Fit in Frame, apply to all.
    But still it won't go away. I really don't want to do one at a time. What else can I do?

    Click on one of the thumbnail images in the project timeline, then select "Edit > Select All" from the menu. All clips in the project will now be highlighted with a yellow border.
    Now click on the small gear icon on one of the images. From the drop-down menu select "Cropping & Rotation". (Alternatively, click on the Crop, Rotate & Ken Burns tool in the centre toolbar - or simply press the C key on the keyboard).
    In the Viewer, select Fit (in the top left corner). All clips will now be changed to Fit.
    It's best when starting a new project to choose your preference from "File > Project Properties", then make a selection for the item "Initial Photo Placement". iMovie's default is Ken Burns (as you've discovered).
    John

  • Firefox process won't die

    When I quit/close Firefox, wait 1 minute, then reopen Firefox, Firefox does not open...it just hangs.
    When looking in my Task Manager, there are two firefox.exe processes running. Killing the process via the Task Manager is required to get Firefox to open/run again.

    I'm quite familiar with the issue you've proposed via this KB article. My issue, though, is quite different. I don't get the annoying "Firefox is already running, but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system.." alert box.
    Further, with the known issue, the firefox process does eventually die. With this new issue, the firefox process never dies and appears orphaned.
    Keep in mind this only started occurring after I upgraded to version 3.6.9 two days ago. There is no doubt in my mind something is broken in the newest build.
    As a developer, I like adhering an important and well-known principle in the software development world when I build and maintain stuff: if it ain't broke, don't fix it. Sometimes I wonder/question if Mozilla developers hold the same conviction, given numerous new issues that make it into every new build of Firefox.
    This also brings up another subject: does anyone do QA anymore? I like to test my stuff before letting others use it. It's extremely important to make sure your stuff is solid, before letting others use it. Cross your T's and dot your I's, for heaven's sake!

  • JPopupMenu won't go away when application is moved

    Sorry, I have to reask this question. I am pretty much stuck with this.
    I have JPopupMenu that contains a JScrollPane that has a JPanel inside it.
    My application's main component is a JFrame, the above JPopupMenu is part of a search panel (JPanel). Every time when I make JPopupMenu visible, then left-click on application's title bar, and move the whole application away, JPopupMenu stays in the original position! If I click on any other place, such as tool bar, or any other component, JPopupMenu will disappear.
    This is really strange stuff. My guess is that titile bar cannot detect mouse events? Is that true? Is there any way I can make it disappear once user holds title bar and move the whole application away?
    thanks in advance!
    Message was edited by:
    jack_wns

    Finally created some sample code I can use to explain the possible solution I try to figure out. If I run the same application and then right-click on the
    application, a popup menu will show up. If I move mouse outside the frame (I try to make JComponent visible so that I can move mouse outside JComponent, but I cannot make it happen), popup menu is still visible. I try to add the following to mouseExited method:
    popupMenu.setVisible(false);
    But this seemingly will disable pupup menu.
    What I try to do is: make popup disappear once user move her mouse outside frame (better yet JComponent). How can I do this?
    Here is the sample code I just created:
    import java.awt.AWTEvent;
    import java.awt.Color;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseListener;
    import javax.swing.JComponent;
    import javax.swing.JFrame;
    import javax.swing.JMenuItem;
    import javax.swing.JPanel;
    import javax.swing.JPopupMenu;
    class PopupTest extends JComponent implements ActionListener, MouseListener {
         private JPanel topPanel;
         private JPopupMenu popupMenu;
         public PopupTest() {
              //setTitle("Popup Menu Application");
              setSize(310, 130);
              setBackground(Color.GREEN);
              topPanel = new JPanel();
              topPanel.setLayout(null);
              add(topPanel);
              JMenuItem menuFileNew = new JMenuItem("New");
              JMenuItem menuFileOpen = new JMenuItem("Open...");
              JMenuItem menuFileSave = new JMenuItem("Save");
              JMenuItem menuFileSaveAs = new JMenuItem("Save As...");
              JMenuItem menuFileExit = new JMenuItem("Exit");
              // Create a popup menu
              popupMenu = new JPopupMenu("Menu");
              popupMenu.add(menuFileNew);
              popupMenu.add(menuFileOpen);
              popupMenu.add(menuFileSave);
              popupMenu.add(menuFileSaveAs);
              popupMenu.add(menuFileExit);
              topPanel.add(popupMenu);
              enableEvents(AWTEvent.MOUSE_EVENT_MASK);
              menuFileNew.addActionListener(this);
              menuFileOpen.addActionListener(this);
              menuFileSave.addActionListener(this);
              menuFileSaveAs.addActionListener(this);
              menuFileExit.addActionListener(this);
              addMouseListener(this);
         public void processMouseEvent(MouseEvent event) {
              if (event.isPopupTrigger()) {
                   popupMenu.show(event.getComponent(), event.getX(), event.getY());
              super.processMouseEvent(event);
         public void actionPerformed(ActionEvent event) {
              System.out.println(event);
         public void mouseExited(final MouseEvent e) {
              System.out.println("Mouse Exited...");
              //popupMenu.setVisible(false);  //line added
         public void mouseEntered(final MouseEvent e) {
              System.out.println("Mouse Entered...");
         public void mousePressed(final MouseEvent e) {
              System.out.println("Mouse pressed...");
         public void mouseReleased(final MouseEvent e) {
         public void mouseClicked(final MouseEvent e) {
              System.out.println("Mouse Clicked...");
         public static void main(String args[]) {
              PopupTest mainFrame = new PopupTest();
              mainFrame.setVisible(true);
              JFrame frame = new JFrame();
              frame.setTitle("Popup Menu Application");
              frame.setSize(500, 430);
              frame.getContentPane().add(mainFrame);
              frame.setVisible(true);
    }thx

  • Eclipse won't die

    I have been having this problem ever since jdk 1_5_0_03, I now use 1_5_0_08, Eclipse is 3.2.1-1. I have a few plugins installed, but the problem is reproducible with a fresh Eclipse install, so I don't think this is the issue.
    The problem itself is that when I try to close Eclipse it doesn't die -- 2 processes are left sleeping on the system, the workspace remains locked, but the worst part is that somehow they hook to the keyboard, and do not let any key events to reach X -- I have no keyboard untill the processes are manually killed (luckily, Ctrl+Alt+F1 works).
    Running eclipse with strace -f, I get the following before the processes hang:
    Process 7703 detached
    [pid  7693] <futex> )       = 1
    [pid  7693] gettimeofday({1160597907, 593421}, NULL) = 0
    [pid  7693] futex(0x809975c, 0x5 /* FUTEX_??? */, 1 <unfinished>
    [pid  7695] <futex> )       = 0
    [pid  7693] <futex> )       = 1
    [pid  7695] futex(0x805beb0, FUTEX_WAIT, 2, NULL <unfinished>
    [pid  7693] futex(0x805beb0, FUTEX_WAKE, 1 <unfinished>
    [pid  7695] <futex> )       = -1 EAGAIN (Resource temporarily unavailable)
    [pid  7693] <futex> )       = 0
    [pid  7695] futex(0x805beb0, FUTEX_WAKE, 1 <unfinished>
    [pid  7693] futex(0x8324f9c, FUTEX_WAIT, 101, NULL <unfinished>
    [pid  7695] <futex> )       = 0
    [pid  7695] gettimeofday({1160597907, 593738}, NULL) = 0
    [pid  7695] gettimeofday({1160597907, 593787}, NULL) = 0
    [pid  7695] mprotect(0xb7f2d000, 4096, PROT_READ) = 0
    [pid  7695] mprotect(0xb7f2d000, 4096, PROT_READ|PROT_WRITE|PROT_EXEC) = 0
    [pid  7695] mprotect(0xb7f2e000, 4096, PROT_NONE) = 0
    [pid  7695] gettimeofday({1160597907, 594018}, NULL) = 0
    [pid  7695] gettimeofday({1160597907, 594100}, NULL) = 0
    [pid  7695] gettimeofday({1160597907, 596337}, NULL) = 0
    [pid  7695] unlink("/tmp/hsperfdata_kenny/7693") = 0
    [pid  7695] pipe([10, 12])              = 0
    [pid  7695] pipe([26, 27])              = 0
    [pid  7695] clone(Process 7978 attached
    child_stack=0xb1e844d4, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0xb1e84be8, {entry_number:6, base_addr:0xb1e84ba0, limit:1048575, seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, seg_not_present:0, useable:1}, child_tidptr=0xb1e84be8) = 7978
    [pid  7695] writev(23, [{"GIOP1212341", 12}, {"22036F262334e26030H"..., 412}], 2) = 424
    [pid  7695] futex(0x8b3b9cc, FUTEX_WAIT, 1, NULL <unfinished>
    [pid  7700] <futex> )       = 0
    [pid  7700] futex(0x805be30, FUTEX_WAIT, 2, NULL <unfinished>
    [pid  7978] poll([{fd=10, events=POLLIN}, {fd=25, events=POLLIN|POLLPRI, revents=POLLIN}, {fd=23, events=POLLIN|POLLPRI}, {fd=22, events=POLLIN|POLLPRI}, {fd=21, events=POLLIN|POLLPRI}, {fd=20, events=POLLIN|POLLPRI}, {fd=26, events=POLLIN|POLLPRI}], 7, -1) = 1
    [pid  7978] read(25, "GIOP121T", 12) = 12
    [pid  7978] read(25, "|317277334216f26420"..., 84) = 84
    [pid  7978] write(19, "A", 1)           = 1
    [pid  7978] poll(
    These are the processes themselves (partial output from `ps axjf`):
    kenny     7689  0.7  0.1   1696   720 pts/2    S+   23:10   0:13 strace -f ./eclipse
    kenny     7690  0.0  0.2  12580  1816 pts/2    T+   23:10   0:00 ./eclipse
    kenny     7693  1.6 11.6 499124 82916 pts/2    Sl+  23:10   0:30 /opt/java/bin/java -Xms40m -Xmx256m -jar /opt/eclipse/./startup.jar -os linux -ws gtk -arch x86 -launcher /opt/eclipse/./eclipse -name Eclipse -showsplash 600 -exitdata 3f0018 -vm /opt/java/bin/java -vmargs -Xms40m -Xmx256m -jar /opt/eclipse/./startup.jar
    I would really appreciate any help or suggestions.

    Try this?
    java -Xms256m -Xmx320m -XX:PermSize=64m -XX:MaxPermSize=128m -jar /usr/local/lib/eclipse/startup.jar -os linux -ws gtk -arch x86 -launcher /usr/local/lib/eclipse/eclipse -name Eclipse -showsplash 600 -exitdata 4aeb003f -vm /opt/java/jre/bin/java -vmargs -jar /usr/local/lib/eclipse/startup.jar

  • MobileMe won't die...traces of it non-stop in Sync log

    In going through my Console log to try to figure out the cause of my Time Machine no longer running properly, I stumbled upon this and am not sure what is causing it.  I have a mobilemesync.log that keeps generating data all day long...data like this:
    2012-10-04 07:54:33:427|main.m:781 main|10a260|Info|Arguments {(
        "--periodic",
        "/System/Library/PrivateFrameworks/DotMacSyncManager.framework/Resources/mobile mesyncclient",
        "--sync"
    2012-10-04 07:54:55:905|DMCPrefsCenter.m:235 -[DMCPrefsCenter defaultConfiguration]|10a260|Info|Downloading new MobileMe Client configuration: http://configuration.apple.com/configurations/internetservices/syncservices/clie ntConfiguration-10.7.5?osBuildVersion=11G56
    2012-10-04 07:54:56:287|DMCPrefsCenter.m:240 -[DMCPrefsCenter defaultConfiguration]|10a260|Info|Cacheing MobileMe Client configuration
    2012-10-04 07:58:32:222|MobileMeRemoteSession.m:130 -[MobileMeRemoteSession initWithDMMemberAccount:configuration:]|10a260|Warning|Failed to validate credentials due to error (null) (null) (FAILED), httpStatusCode:-1, errorType:106 (domain=AYErrorDomain, code=2), transactionState:5, txnId:0912AE15-6772-4487-98D2-0C45EA679788, auto-retries=0, manual-retries=0, retrying...
    2012-10-04 08:02:41:849|MobileMeRemoteSession.m:130 -[MobileMeRemoteSession initWithDMMemberAccount:configuration:]|10a260|Warning|Failed to validate credentials due to error (null) (null) (FAILED), httpStatusCode:-1, errorType:106 (domain=AYErrorDomain, code=2), transactionState:5, txnId:1668C541-EA1A-44B4-B0BF-323D7A8D5C83, auto-retries=0, manual-retries=0, retrying...
    2012-10-04 08:06:12:186|MobileMeRemoteSession.m:130 -[MobileMeRemoteSession initWithDMMemberAccount:configuration:]|10a260|Warning|Failed to validate credentials due to error (null) (null) (FAILED), httpStatusCode:-1, errorType:106 (domain=AYErrorDomain, code=2), transactionState:5, txnId:94051447-7495-4ECF-9AF9-2FC796FC484F, auto-retries=0, manual-retries=0, retrying...
    Is anyone else seeing this?  Is it a problem that can be stopped?

    I don't know.  I haven't used anything on MobileMe in months.  I did use an iDisk at one time, I used the Gallery, I used all sorts of aspects of MobileMe.  I'm not physically going in and using it in any way right now, but apparently something on my system is still trying to do it anyway.  How would I figure out how to stop it?

  • ITunes crashing consistently after a short period & won't die!

    Hi there
    I have a G4 AGP Powermac running Tiger which I'm using as a server for my Apple TV. It has a 120GB IDE boot drive and a 1TB WD SATA drive on a Sonnet PCI card which holds the media files.
    Over the past couple of weeks, the stability of the system has been getting progressively worse; iTunes will start but crash after a period of time, often without my actually doing anything. It has now decided it's going to crash every time rather than import a CD. It's also nearly impossible to close down too - Force Quit makes the application go away but it's still open in the Dock and doing a ps -aux in Terminal shows me:
    g4server 143 0.0 -0.0 0 0 ?? E 11:58AM 0:00.00 (iTunes)
    Any suggestions very welcome. Even sudo kill -9 (PID) doesn't make it go away.

    I had the exact same issue when I updated to iTunes 8.1.1 and I tried a few different things and only one of them worked. this is what I did and it has ran flawlessly since.
    Delete/Move to trash iTunes from your YourHardrive/Applications folder.
    Download and install new version of iTunes.
    Enjoy.
    It took me less than 30 minutes and I still had my music.
    Charlie B

  • [SOLVED - at least for me]annoying TAB sound just won't die...

    Hi,
    I've added this for the MODULES in rc.conf:
    MODULES=(!pcmcia !pcmcia_core !pcspkr !snd_pcsp powernow-k8 cpufreq_ondemand)
    and still I hear this annoying sound when I hit the <TAB> in the console, over and over and over again....
    I've disabled the pc speaker and its sound module, and I have configured the ALSA using alsaconf succesfully (the sound is crap on my HP Compaq 615, but that's because of the speakers, not Linux). Still if I run the "alsamixer" command, I can see the volume of the pc speaker right there, but if I change the PC speaker volume the system volume is not changed. Is there an alsa "beep" sound for the <TAB> i need to kill somewhere? This mind boiling sound I hear every time in xterm when I make an error of some sort in the keyboard, like when I'm working in Vim and I scroll to the top of the file and hit the line, etc.
    lsmod gives me this output:
    http://pastebin.com/uYHcmp8V
    Any advice?
    Last edited by tomislavski (2010-04-02 07:13:51)

    @tomislavski:
    I believe your internal beeper is controlled by the drivers for your soundcard instead of the generic pcspkr-driver, since blacklisting pcspkr and snd_pcsp had no effect. I also use the snd_hda_intel-driver on my netbook, and I have two separate controls for speakers in alsamixer - "Speaker" refer to sounds played through normal applications, while a "Beep"-control refers to those annoying console beeps. You could check if you have a similar setup, and in that case just mute the Beep-control.
    Nareto wrote:I'm too having the beep on Tab etc. I did all of the above with no success.
    The original poster had allready tried placing !pcspkr and !snd_pcsp in the MODULES array in /etc/rc.conf, which on most (older?) computers should be enough to disable the internal speakers system-wide. Did you try that too? You can test the procedure without rebooting by running:
    su -c "rmmod pcspkr"
    As for disconnecting the cable to the internal speaker, I don't think it was intended as a joke. I've done the procedure before, and at least on my desktop computer the internal speaker was quite easy to locate, and it was connected to the motherboard by a single, easily removable cable. If you're on a laptop however, the procedure might be a bit more bothersome.
    Last edited by Peanut (2010-04-01 01:03:49)

  • 9i report won't die after completing successfully

    We are running 9iAS 9.0.2.2 and 9iDB 9.2.0.3, all machines are Linux RedHat Linux.
    We have a development 9iAS server whose reports run and cleanup successfully off the 9iDB, and we have 3x9iAS production servers (when we go live) that run reports but they do NOT cleanup successfully. That is, both the main report process and the 9i DBMS_DEBUG / DBMS_PIPE special process persist in the 9iDB after the run has finished.
    Does anyone know why one 9iAS report request cleans up and the other 9iAS report request does not clean up. This is a 100% repeatable activity.
    Is there some hand-shaking between the 9iAS and 9iDB that could be different between the two 9iAS boxes?
    Where would I look to find them? I am not a server techie, I need help on this.
    I need an answer in 24 hours please.
    David Martin
    [email protected]
    +61 2 6243 8777
    +61 4 0335 0524

    We worked with Oracle Support using ODC and they determined that the rwrun.jar on the two machines was different. What we had done was apply one-off patch p2938002_9022_GENERIC to the 'prod' machines and this caused our problem.
    David

  • Session won't die

    I have an UPDATE query running which updates ~25,000 records from an external table, like:
    update internal_table it
    set field = (select field from external_table et where it.pk = et.pk)
    Once I'd noticed it had been running at almost 100% CPU (according to OEM) for 60 minutes, I issused:
    alter system kill session '216,64342' immediate;
    In fact, I've issued it over 10 times in the last hour, which puts the query at 2 hours of run time.
    Is there any other recourse to stop this process and roll it back?
    -Chuck

    When you kill a session, it needs to roll back all of the work done up to the time you killed it before it can go away. If the session ran for 1 hour before you killed it, it would likely need at least 1 hour to rollback the work already done.
    Killing the O/S process will make it appear to go away faster, but the rollback is stil happening.
    John

Maybe you are looking for

  • Windows Server Essentials Connector stops responding during install Win 7 Pro to 2012 R2

    I am trying to reconnect a Win 7 Pro computer to a new  Essentials 2012R2 and when it asks me to set it up for just me or multiple users a message pops up saying it has stopped responding. It sets up a profile of _clientsetup_$ and it shows up in das

  • White line around image

    Hi everyone, I keep getting a white line appear around images I save in Photoshop and then insert into Dreamweaver. It happens when I also save text with a transparent background. The text has a very faint white line around it. Why is this?

  • IMP: WF Events related to Vendor and Invoices

    Hi Guys, I'm looking for following 4 wf events related to Vendor and Invoices: 1. When new Vendors are Created, 2. When Vendors are Updated, 3. When Vendor Invoices are Created, 4. When Vendor Invoices are Updated, I could find 'oracle.apps.po.event.

  • Business Partner Name missing from ACH Payment File

    We are trying to send a payment on a loan to a business partner via an ACH file.  When the file is created, the payee name is missing from the ACH File.  It runs perfectly in our developement client, but not in production.  I can not seem to find any

  • ORA-03121 Error

    To all: Hi! Anybody who is familiar with this error? "[Intersolv][ODBC Oracle Driver][Oracle]Error while trying to retrieve text for for error ORA-03121". I am using Oracle version 7.3 and Intersolv 16-bit ODBS Driver. If you have any idea about this