Slowing Down a CFHTTP request

i have a chunk of code that loops over a CFHTTP request to
download files off a server. I do not get all the files I am
supposed to, and I'm guessing it's because the loop runs too fast.
if i run the code one at a time, i get what i expect. is there
anyway to slow down the loop or to fix my problem?
<CFLOOP...>
<CFHTTP....
</CFLOOP>

Your comment, as usual, totally out of topic. The code provided
shows an approach to slowdown the sequence of CFHTTP requests, by
imposing timeouts between them, sInce this was identified as the
initial problem/question. Has nothing to do with your "smart"
comments and suggestions. If this works, the scope attribute can be
replaced with an arbitrary name.
Mr Black, it is unwise, very unwise, to apply a server-scoped
lock the way you do.
Definitely, not session-dependent. Guess why?
Why not? In other words, why may I not store the name of a
query in the session scope?
If you wish to argue, then argue on those technical points.
You're quite capable of that. The forum will benefit more from it
than from you slinging cheap adjectives about.

Similar Messages

  • Timer Class not accurate and slows down my animation!?

    Does anyknow how why my timer object is not accurate and why it slows down my animation that is also present on my GUI at the same time?
    I have a timer in the form of 0.00 the left of the decimal point should represent a second but it doesnt, run my code and see for yourselves. below is my code if anyone can fix these 2 problems i will be very thankfull:
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    import java.awt.Shape;
    import java.io.*;
    import java.text.*;
    import java.util.*;
    import javax.swing.*;
    import javax.swing.border.*;
    import javax.swing.event.*;
    import javax.swing.Timer;
    import java.sql.*;
    import java.text.*;
    public class RT extends JFrame implements MouseMotionListener
        //declares a number of swing componets to be used for the JFrame
        private JTextArea infoJTextArea;
        private JPanel showJPanel, startJPanel, helpJPanel, resultsJPanel;
        private JLabel de4JLabel, de3JLabel, mainTitleJLabel, nameJLabel, ageJLabel,
                       deJLabel, de1JLabel, de2JLabel, timeJLabel,nameResultJLabel,
                       ageResultJLabel, timeResultsJLabel, ratingJLabel, coJLabel, shJLabel;
        private JTextField nameJTextField, ageJTextField,nameResultJTextField,
                       ageResultsJTextField, timeResultsJTextField, ratingJTextField;
        private JButton exitJButton, showJButton, loginJButton, startTestJButton,
                        tempObjectJButton;
        private JScrollPane scroll;
    public JComboBox colourJComboBox, sizeJComboBox, shapeJComboBox, speedJComboBox;
    private static Connection dbcon;
    int temp=0;
    private String[] col = { "Red", "Blue", "Green","Yellow","Orange","Black"};
    private String[] shapeA = { "Normal Rectangle", "Normal Circle", "Normal Oval","BIG Rectangle", "BIG Circle","BIG Oval","small rectangle","small circle", "small oval"};
    private String[] speed = { "Fast", "Normal", "Slow"};
    public int checking;
    static int flag, flagshape, flagspeed;
        // creates and sets up a number of varibles to be used by the class
        public long timeLimit = 0;
        DecimalFormat timeDec = new DecimalFormat (":00");
        public int age;
        public String name, shapeChoice="Normal Rectangle(Never selected anything)", colourChoice="Black(Never selected anything)";
        private Timer TimeNow;
        private JTextField timerJTextField;
        ShapeMovingPanel testJPanel;
        Random seed;
        Shape shape;
        Shape[] shapes = {new Rectangle2D.Double(50, 30, 75, 25),new Ellipse2D.Double(175, 125, 50, 50),new Ellipse2D.Double(90, 100, 75, 35),new Rectangle2D.Double(50, 30, 175, 125),new Ellipse2D.Double(175, 125, 125, 125),new Ellipse2D.Double(90, 100, 175, 135),new Rectangle2D.Double(50, 30, 55, 15),new Ellipse2D.Double(175, 125, 20,20),new Ellipse2D.Double(90, 100, 55, 15)};
    //50, 30, 75, 25 change starting point here****************************************
        public RT()            // constructor method
            seed = new Random();
            shape = shapes[0];
            //sets up the Timer
            TimeNow = new Timer((1), new TimerListener());//++++++++++++++++++++++++++timer -17
            createUserInterface();          // method that creates the user interface     
        private void createUserInterface()
            new Thread(new Runnable()
                public void run()
                    String results = "";
                    int count = 0;
                    boolean journeyOn = true;
                    while(journeyOn && count < 3)
                        try
                            Thread.sleep(1000);
                        catch(InterruptedException ie)
                            System.err.println("show interrupt: " + ie.getMessage());
                            journeyOn = false;
                        results += count++ + ", ";
                    try {
                             Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                             dbcon = DriverManager.getConnection("jdbc:odbc:CMT3991", "", ""); // Access/ODBC
                          //connection ash used to connect to the user table in access
                           } catch(Exception eee)
                           eee.printStackTrace();  //exception if error occurs during the driver connection
                             System.out.println("* UserDA CONNECTED *");
            }).start();
            Container contentPane = getContentPane();
            contentPane.setLayout( null );
            // set up infoJTextField
            infoJTextArea = new JTextArea();
            infoJTextArea.setBounds( 20, 420, 550, 170  );
            infoJTextArea.setEditable( false);
            infoJTextArea.setText("\n    Welcome to the reaction testing program, this " +
                            "program is designed to test your reactions in a  \n"+
                            "    number of different situations.\n"+"\n    Please " +
                            "enter your name and age, or select show previous results.");
            contentPane.add( infoJTextArea );
            scroll = new JScrollPane(infoJTextArea);
            scroll.setBounds(  20, 420, 550, 170 );
            contentPane.add( scroll );
                  startJPanel = new JPanel();
            startJPanel.setBounds( 16,16, 560, 375 );
            startJPanel.setBorder(
                    new TitledBorder( "WELCOME - PLEASE ENTER YOUR NAME AND AGE:" ) );
            startJPanel.setLayout( null );
            contentPane.add( startJPanel );
            //sets up a JPanel
            mainTitleJLabel = new JLabel();
            mainTitleJLabel.setIcon( new ImageIcon( "title.png" ) );
            mainTitleJLabel.setBounds( 30, 10, 520, 170 );
            mainTitleJLabel.setHorizontalAlignment( JLabel.CENTER );
            startJPanel.add( mainTitleJLabel );
            //creates a newJLabel
            nameJLabel= new JLabel();
            nameJLabel.setBounds( 52, 200, 70, 35 );
            nameJLabel.setText("Name:");
            startJPanel.add( nameJLabel);
            //creates a new JTextField
            nameJTextField = new JTextField();
            nameJTextField.setBounds( 130, 200, 300, 24 );
            startJPanel.add( nameJTextField );
            //creates a newJLabel
            ageJLabel = new JLabel();
            ageJLabel.setBounds( 52, 245, 100, 35 );
            ageJLabel.setText("Age:");
            startJPanel.add( ageJLabel );
            //creates a new JTextField
            ageJTextField = new JTextField();
            ageJTextField.setBounds( 130, 245, 300, 24 );
            startJPanel.add( ageJTextField );
            //creates a JButton
            loginJButton = new JButton();
            loginJButton.setBounds( 440, 200, 90, 24 );
            loginJButton.setText( "Login" );
            loginJButton.setBackground( Color.YELLOW );
            startJPanel.add( loginJButton );
            loginJButton.setEnabled(true);
    //        loginJButton.setVisible(true);
            loginJButton.addActionListener(
                new ActionListener()    // adds an action listener,anonymous inner class
                    // event handler called when search is pressed
                    public void actionPerformed( ActionEvent event )
                        // not necessary to pass events to these methods...
                        Login();  // calls the Login method                       
            //creates a JButton
            showJButton = new JButton();
            showJButton.setBounds( 200, 320, 180, 24 );
            showJButton.setText( "Show previous results" );
            showJButton.setBackground( Color.YELLOW );
            startJPanel.add( showJButton );
            showJButton.setEnabled(true);
    //        showJButton.setVisible(true);
            showJButton.addActionListener(
                new ActionListener()    // adds an action listener,anonymous inner class
                    // event handler called when search is pressed
                    public void actionPerformed( ActionEvent event )
                        showData();   // calls the showData method                       
            //sets up a JPanel
            showJPanel = new JPanel();
            showJPanel.setBounds( 16,16, 560, 375 );
            showJPanel.setBorder(new TitledBorder( "PREVIOUS RESULTS:" ) );
            showJPanel.setLayout( null );
            contentPane.add( showJPanel );
            //sets up a JPanel
            helpJPanel = new JPanel();
            helpJPanel.setBounds( 16,16, 560, 375 );
            helpJPanel.setBorder(
            new TitledBorder( "CHOOSE A NUMBER OF OPTIONS AND GET READY:" ) );
            helpJPanel.setLayout( null );
            helpJPanel.setVisible(false);
            contentPane.add( helpJPanel );
            //creates a newJLabel
            deJLabel= new JLabel();
            deJLabel.setBounds( 23, 390, 530, 35 );
            deJLabel.setText("Details:");
            contentPane.add( deJLabel);
            //creates a newJLabel
            coJLabel= new JLabel();
            coJLabel.setBounds( 70, 40, 530, 35 );
            coJLabel.setText("Choose a colour:");
            helpJPanel.add( coJLabel);
            //creates a newJLabel
            de1JLabel= new JLabel();
            de1JLabel.setBounds( 25, 100, 530, 35 );
            de1JLabel.setText("You are about to start the reaction test, when you " +
                              "press the start button it will begin.");
            helpJPanel.add( de1JLabel);
            //creates a newJLabel
            de1JLabel= new JLabel();
            de1JLabel.setBounds(160, 145, 530, 35 );
            de1JLabel.setText("Simply catch the moving item and click.");
            helpJPanel.add( de1JLabel);
            colourJComboBox = new JComboBox( col );
               colourJComboBox.setBounds( 70, 70, 135, 21 );
               colourJComboBox.setMaximumRowCount( 3 );
               helpJPanel.add( colourJComboBox );
              colourJComboBox.addActionListener(
                new ActionListener() // adds an action listener,anonymous inner class
                    // event handler called when search is pressed
                    public void actionPerformed( ActionEvent event )
                         colourChoice="Black";
                         int x = colourJComboBox.getSelectedIndex();
                        if( x  == 0)
                             flag = 1;
                             colourChoice="Red";
                        else if(x  == 1)
                             flag = 2;
                             colourChoice="Blue";
                        else if(x  == 2)
                             flag = 3;
                                colourChoice="Green";
                         else if(x  == 3)
                             flag = 4;
                                colourChoice="Yellow";
                         else if(x  == 4)
                             flag = 5;
                                colourChoice="Orange";
                           else if(x  == 5)
                             flag = 6;
                                colourChoice="Black";
            shJLabel= new JLabel();
            shJLabel.setBounds( 340, 40, 530, 35 );
            shJLabel.setText("Choose a shape and size:");
            helpJPanel.add( shJLabel);
            shapeJComboBox = new JComboBox( shapeA );
               shapeJComboBox.setBounds( 340, 70, 135, 21 );
               shapeJComboBox.setMaximumRowCount( 3 );
               helpJPanel.add( shapeJComboBox );
              shapeJComboBox.addActionListener(
                new ActionListener() // adds an action listener,anonymous inner class
                    // event handler called when search is pressed
                    public void actionPerformed( ActionEvent event )
                          int xshape = shapeJComboBox.getSelectedIndex();
                        //shapeChoice="Normal Rectangle";
                        if( xshape  == 0)
                        {     flagshape = 1;
                             shapeChoice="Normal Rectangle";
                        else if(xshape  == 1)
                        {     flagshape = 2;
                             shapeChoice="Normal Circle";
                        else if(xshape  == 2)//**********here
                        {     flagshape = 3;
                             shapeChoice="Normal Oval";
                        else if(xshape  == 3)
                        {     flagshape = 4;
                             shapeChoice="BIG Rectangle";
                        else if(xshape  == 4)
                       {      flagshape = 5;
                             shapeChoice="BIG Circle";
                        else if(xshape  == 5)
                     {        flagshape = 6;
                             shapeChoice="BIG Oval";
                        else if(xshape  == 6)
                             flagshape = 7;
                             shapeChoice="small rectangle";
                        else if(xshape  == 7)
                     {        flagshape = 8;
                             shapeChoice="small circle";
                        else if(xshape  == 8)
                     {        flagshape = 9;
                             shapeChoice="small oval";
          /*  speedJComboBox = new JComboBox( speed );
               speedJComboBox.setBounds( 10, 150, 135, 21 );
               speedJComboBox.setMaximumRowCount( 3 );
               helpJPanel.add( speedJComboBox );
              speedJComboBox.addActionListener(
                new ActionListener() // adds an action listener,anonymous inner class
                    // event handler called when search is pressed
                    public void actionPerformed( ActionEvent event )
                          int xspeed = speedJComboBox.getSelectedIndex();
                        if( xspeed  == 0)
                             flagspeed = 1;
                             else if(xspeed  == 1)
                             flagspeed = 2;
                             else
                             flagspeed = 3;
                        System.out.println(flagspeed);     
            //creates a newJLabel
            de2JLabel= new JLabel();
            de2JLabel.setBounds( 20, 380, 70, 35 );
            de2JLabel.setText("Details:");
            helpJPanel.add( de2JLabel);
            //creates a JButton
            startTestJButton = new JButton();
            startTestJButton.setBounds( 185, 205, 180, 60 );
            startTestJButton.setText( "START" );
            startTestJButton.setBackground( Color.YELLOW );
            helpJPanel.add( startTestJButton );
            startTestJButton.setEnabled(true);
    //        startTestJButton.setVisible(true);
            startTestJButton.addActionListener(
                new ActionListener() // adds an action listener,anonymous inner class
                    // event handler called when search is pressed
                    public void actionPerformed( ActionEvent event )
                        startTest();
            //sets up an animation panel
            testJPanel = new ShapeMovingPanel(this);
            testJPanel.setBounds( 16,16, 560, 375 );
            testJPanel.setBorder(new TitledBorder("Click the moving object:"));
            testJPanel.setLayout( null );
            testJPanel.setVisible(false);
            contentPane.add( testJPanel );
            testJPanel.addMouseMotionListener(this);
            //creates a newJLabel
            timeJLabel = new JLabel();
            timeJLabel.setBounds( 440, 330, 100, 35 );
            timeJLabel.setText("Time:");
            testJPanel.add( timeJLabel );
            //creates a new JTextField
            timerJTextField = new JTextField();
            timerJTextField.setBounds( 480, 335, 60, 24 );
            timerJTextField.setText(String.valueOf(timeLimit));
            timerJTextField.setHorizontalAlignment(JTextField.CENTER );
            timerJTextField.setEditable(false);
            timerJTextField.setBackground( Color.YELLOW );
            testJPanel.add( timerJTextField );
            resultsJPanel = new JPanel();
            resultsJPanel.setBounds( 16,16, 560, 375 );
            resultsJPanel.setBorder(new TitledBorder("HERE ARE YOUR RESULTS:"));
            resultsJPanel.setLayout( null );
            resultsJPanel.setVisible(false);
            contentPane.add( resultsJPanel );
            de3JLabel= new JLabel();
            de3JLabel.setBounds(20, 200, 530, 35 );
            de3JLabel.setText("Below is also the movements you made with your mouse, " +
                              "you may exit the program now.");
            resultsJPanel.add( de3JLabel);
            de4JLabel= new JLabel();
            de4JLabel.setBounds(135, 245, 530, 35 );
            de4JLabel.setText("Thank you for trying the Reaction Testing program");
            resultsJPanel.add( de4JLabel);
            //creates a newJLabel
            nameResultJLabel= new JLabel();
            nameResultJLabel.setBounds( 62, 55, 50, 35 );
            nameResultJLabel.setText("Name:");
            resultsJPanel.add( nameResultJLabel);
            //creates a new JTextField
            nameResultJTextField = new JTextField();
            nameResultJTextField.setBounds( 140, 55, 300, 24 );
            resultsJPanel.add( nameResultJTextField );
            nameResultJTextField.setEditable(false);
            //creates a newJLabel
            ageResultJLabel = new JLabel();
            ageResultJLabel.setBounds( 62, 90, 100, 35 );
            ageResultJLabel.setText("Age:");
            resultsJPanel.add( ageResultJLabel );
            //creates a new JTextField
            ageResultsJTextField = new JTextField();
            ageResultsJTextField.setBounds( 140, 90, 300, 24 );
            resultsJPanel.add( ageResultsJTextField );
            ageResultsJTextField.setEditable(false);
            //creates a newJLabel
            timeResultsJLabel = new JLabel();
            timeResultsJLabel.setBounds( 62, 125, 100, 35 );
            timeResultsJLabel.setText("Time taken:");
            resultsJPanel.add( timeResultsJLabel );
            //creates a new JTextField
            timeResultsJTextField = new JTextField();
            timeResultsJTextField.setBounds( 140, 125, 300, 24 );
            resultsJPanel.add( timeResultsJTextField );
            timeResultsJTextField.setEditable(false);
            //creates a newJLabel
            ratingJLabel = new JLabel();
            ratingJLabel.setBounds( 62, 160, 100, 35 );
            ratingJLabel.setText("Your Rating:");
            resultsJPanel.add( ratingJLabel );
            ratingJTextField = new JTextField();
            ratingJTextField.setBounds( 140, 160, 300, 24 );
            resultsJPanel.add( ratingJTextField );
            ratingJTextField.setEditable(false);
            //creates a JButton
            exitJButton = new JButton();
            exitJButton.setBounds( 235, 310, 90, 24 );
            exitJButton.setText( "Exit" );
            exitJButton.setBackground( Color.WHITE );
            resultsJPanel.add( exitJButton );
            exitJButton.setEnabled(true);
            exitJButton.addActionListener(
                new ActionListener() // adds an action listener,anonymous inner class
                    // event handler called when exitJButton is pressed
                    public void actionPerformed( ActionEvent event )
                        System.exit(0); //closes the programme
            }); // end anonymous inner class
            addWindowListener(new WindowAdapter()
                public void windowClosing(WindowEvent e)
                    System.exit(0);
            // set properties of application's window
            setTitle( "Reaction Tester - CMT3991" ); // set JFrame's title bar string
            //setSize( 1280,995 );    // set width and height of JFrame
            setSize( 608, 650 );         // set width and height of JFrame
            setVisible( true );       // display JFrame on screen
        //** set up of method main */
        public static void main( String[] args )
            RT application = new RT();
            application.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
        } // end method main
         * action listener for TimeNow Timer
        private class TimerListener implements ActionListener
            public void actionPerformed(ActionEvent event)
                timeLimit ++;          
                if (timeLimit==100)
                     temp++;
                     timeLimit=0;
                timerJTextField.setText(String.valueOf(temp +""+timeDec.format(timeLimit)));
        private void Login()
            try
                name = nameJTextField.getText();
                age = Integer.parseInt(ageJTextField.getText());
                startJPanel.setVisible(false);
                showJPanel.setVisible(false);
                helpJPanel.setVisible(true);
                infoJTextArea.setText("\n    Welcome "+name+" you will soon know how " +
                                      "fast your reactions are.");
            catch (NumberFormatException exception)
                JOptionPane.showMessageDialog(this,
                        "There is either a blank field or a number hasn't been entered",
                        "Input Type error", JOptionPane.ERROR_MESSAGE);
                //shows this is something has been entered wrong
        private void startTest()
            helpJPanel.setVisible(false);
          //  System.out.println(""+ seed.nextInt(shapes.length));
            //shape = shapes[seed.nextInt(shapes.length)];//****************************
            if (flagshape==1)
                 shape = shapes[0];// changed colour here***************************
            else if (flagshape==2)
                 shape = shapes[1];// changed colour here***************************
            else if (flagshape==3)
                 shape = shapes[2];// changed colour here***************************
           else if (flagshape==4)
                 shape = shapes[3];// changed colour here***************************
             else if (flagshape==5)
                 shape = shapes[4];// changed colour here***************************
            else if (flagshape==6)
                 shape = shapes[5];// changed colour here***************************
            else if (flagshape==7)
                 shape = shapes[6];// changed colour here***************************
            else if (flagshape==8)
                 shape = shapes[7];// changed colour here***************************
            else if (flagshape==9)
                 shape = shapes[8];// changed colour here***************************
           // shape = shapes[8];
            System.out.println(shape.toString());
            testJPanel.setShape(shape);
            testJPanel.setVisible(true);
            testJPanel.start();
            infoJTextArea.setText("");
            TimeNow.start();
         * called by animation panel after shape is clicked
        public void stop()
            TimeNow.stop();
            movingObject();
         * this will compete with your animation
         * ie, it will slow it down or make it appear jerky
        public void mouseMoved(MouseEvent e)
            saySomething("\n    Mouse moved", e);
        public void mouseDragged(MouseEvent e)
            saySomething("\n    Mouse dragged", e);
        void saySomething(String eventDescription, MouseEvent e)
            infoJTextArea.append(eventDescription
                         + " (" + e.getX() + "," + e.getY() + ")");
            infoJTextArea.setCaretPosition(infoJTextArea.getDocument().getLength());
        private void movingObject()
            TimeNow.stop();
            //timeLimit;
            testJPanel.setVisible(false);
            resultsJPanel.setVisible(true);
            nameResultJTextField.setText(name);
            ageResultsJTextField.setText(String.valueOf(age)+" years old");
    System.out.println("shape used: "+shapeChoice);
            String mouse = infoJTextArea.getText();
            String tick = timerJTextField.getText();
            timeResultsJTextField.setText(tick);
            try
                // create a file called welch.txt
                final FileWriter outputFile = new FileWriter("Backup_of_"+name+"s_results.txt", true);
                final BufferedWriter outputBuffer = new BufferedWriter(outputFile);
                // converts data to a formatted string
                final PrintWriter printstream = new PrintWriter(outputBuffer);
                printstream.println("THIS IS A BACKUP");
                printstream.println("The person's name is: "+name);
                printstream.println("There age is: "+age);
                printstream.println("Time taken: "+tick+" seconds");
                printstream.println("The Shape and size was: "+shapeChoice);
                printstream.println("It's colour was: "+colourChoice);
                printstream.println("The mouse moved as follows: "+mouse);
                //states what needs to be printed to the new file
                printstream.close(); // closes teh printstream
            catch(IOException eio)
                //catchs the IO exception
            if(temp<5.00)
                ratingJTextField.setText("Thierry Henry");     
            else if(timeLimit<=10)
                ratingJTextField.setText("Average");     
            else if(timeLimit<=15)
                ratingJTextField.setText("You gotta be fat or something");     
            else if(timeLimit<=20)
                ratingJTextField.setText("See a doctor");
            else if(timeLimit>20)
                ratingJTextField.setText("DO YOU KNOW WHAT YOU DOING!?");
            String rate=ratingJTextField.getText();
            try
                   Statement st = dbcon.createStatement();
                   String cmd = "INSERT INTO users (Name, Age, Time_Taken, Rating, Mouse_Movement,Shape_and_Size, Shape_Colour) VALUES ('" + name + "' , " + age + " , '" + tick + "' , '" + rate+"','"+ mouse+"','"+ shapeChoice+"','"+ colourChoice+"');";
                //creates a SQL statement and executes it
                st.executeUpdate(cmd);
                   st.close();//close the statement
              } catch (Exception eDA)
                   eDA.printStackTrace();
        private void showData()
            // pretend this takes awhile -> 3 seconds (count)
            new Thread(new Runnable()
                public void run()
                    String results = "";
                    int count = 0;
                    boolean journeyOn = true;
                    while(journeyOn && count < 3)
                        try
                            Thread.sleep(1000);
                        catch(InterruptedException ie)
                            System.err.println("show interrupt: " + ie.getMessage());
                            journeyOn = false;
                        results += count++ + ", ";
                    infoJTextArea.setText("Here are your results:\n"+results);
                    startJPanel.setVisible(false);
                    showJPanel.setVisible(true);
            }).start();
    class ShapeMovingPanel extends JPanel implements ActionListener
        RT host;
        Timer timer;
        Shape shape, xformed;
        int x, y, dx, dy;
        public ShapeMovingPanel(RT rt)
            timer = new Timer(-20, this);     
            host = rt;
        /*    if (rt.flagspeed==1)
            timer = new Timer(-20, this);
            else if (rt.flagspeed==2)
                timer = new Timer(20, this);
            else if (rt.flagspeed==3)
            timer = new Timer(100, this);
            //change speed here******************************
            x = 0;//0
            y = 0;//0
            dx =2;//2
            dy = 3;//3
            //setBackground(Color.pink);
            addMouseListener(new ShapeTender());
        public void actionPerformed(ActionEvent e)
            int w = getWidth();
            int h = getHeight();
            if(w <= 0 || h <= 0)
                return;
            checkBoundries(w,h);
            x += dx;
            y += dy;
            repaint();
        private void checkBoundries(int w, int h)
            Rectangle r = xformed.getBounds();
            Insets insets = getInsets();
            if(r.x + dx < insets.left || r.x + r.width + dx > w - insets.right)
                dx *= -1;
            if(r.y + dy < insets.top || r.y + r.height + dy > h - insets.bottom)
                dy *= -1;
        protected void paintComponent(Graphics g)
            super.paintComponent(g);
            Graphics2D g2 = (Graphics2D)g;
            g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                                RenderingHints.VALUE_ANTIALIAS_ON);
            AffineTransform at = AffineTransform.getTranslateInstance(x, y);
            if (RT.flag==1)
            {g2.setPaint(Color.red);// changed colour here***************************
            else if (RT.flag==2)
            {g2.setPaint(Color.blue);// changed colour here***************************
            else if (RT.flag==3)
            {g2.setPaint(Color.green);// changed colour here***************************
            else if (RT.flag==4)
            {g2.setPaint(Color.yellow);// changed colour here***************************
            else if (RT.flag==5)
            {g2.setPaint(Color.orange);// changed colour here***************************
            else if (RT.flag==6)
            {g2.setPaint(Color.black);// changed colour here***************************
            xfo                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     

    I'm (being lazy and) using the older RT app posted on your last thread. I removed the
    TimeNow timer from the RT class and used System.currentTimeMillis (as you requested) to
    determine the elapsed time during the animation (see "startTest", "stop" and
    "movingObject" methods). Also changed the DecimalFormat to NumberFormat and set the
    "maximumFractionDigits" to "2" so it will truncate the fraction to two digits (more simple
    than before). Made arrangements for the ShapeMovingPanel class to update the
    "timerJTextField" during the animation (RT.updateTime method).
    The MouseMotionListener is causing the animation to appear jerky and uneven. The
    "mouseMoved" method is very busy while the mouse is moving. You might consider recording
    the "mousePressed" events instead of the "mouseMoved" events, ie, the events where the user
    is attempting to click inside the moving shape. It would allow the app to be more
    responsive and might eliminate the uneven motion of the animating shape.
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    import java.io.*;
    import java.text.*;
    import java.util.*;
    import javax.swing.*;
    import javax.swing.border.*;
    import javax.swing.event.*;
    import javax.swing.Timer;
    public class RT extends JFrame implements MouseMotionListener
        //declares a number of swing componets to be used for the JFrame
        private JTextArea infoJTextArea;
        private JPanel showJPanel, startJPanel, helpJPanel, resultsJPanel;
        private JLabel de4JLabel, de3JLabel, mainTitleJLabel, nameJLabel, ageJLabel,
                       deJLabel, de1JLabel, de2JLabel, timeJLabel,nameResultJLabel,
                       ageResultJLabel, timeResultsJLabel, ratingJLabel;
        private JTextField nameJTextField, ageJTextField,nameResultJTextField,
                       ageResultsJTextField, timeResultsJTextField, ratingJTextField;
        private JButton exitJButton, showJButton, loginJButton, startTestJButton,
                        tempObjectJButton;
        private JScrollPane scroll;;
        // creates and sets up a number of varibles to be used by the class
        private long startTime;
        private long endTime;
        public int timeLimit = 0;
        public int age;
        public String name;
        private JTextField timerJTextField;
        ShapeMovingPanel testJPanel;
        NumberFormat timeDec;
        Random seed;
        Shape shape;
        Shape[] shapes = {
            new Rectangle2D.Double(50, 30, 75, 25),
            new Ellipse2D.Double(175, 125, 50, 50),
            new Ellipse2D.Double(90, 100, 75, 35)
        public RT()
            timeDec = NumberFormat.getInstance();
            timeDec.setMaximumFractionDigits(2);
            seed = new Random();
            shape = shapes[0];
            createUserInterface();
        private void createUserInterface()
            Container contentPane = getContentPane();
            contentPane.setLayout( null );
            // set up infoJTextField
            infoJTextArea = new JTextArea();
            infoJTextArea.setBounds( 20, 420, 550, 170  );
            infoJTextArea.setEditable( false);
            infoJTextArea.setText("\n    Welcome to the reaction testing program, this " +
                            "program is designed to test your reactions in a  \n"+
                            "    number of different situations.\n"+"\n    Please " +
                            "enter your name and age, or select show previous results.");
            contentPane.add( infoJTextArea );
            scroll = new JScrollPane(infoJTextArea);
            scroll.setBounds(  20, 420, 550, 170 );
            contentPane.add( scroll );
              startJPanel = new JPanel();
            startJPanel.setBounds( 16,16, 560, 375 );
            startJPanel.setBorder(
                    new TitledBorder( "WELCOME -PLEASE ENTER YOUR NAME AND AGE:" ) );
            startJPanel.setLayout( null );
            contentPane.add( startJPanel );
            //sets up a JPanel
            mainTitleJLabel = new JLabel();
            mainTitleJLabel.setIcon( new ImageIcon( "title.png" ) );
            mainTitleJLabel.setBounds( 30, 10, 520, 170 );
            mainTitleJLabel.setHorizontalAlignment( JLabel.CENTER );
            startJPanel.add( mainTitleJLabel );
            //creates a newJLabel
            nameJLabel= new JLabel();
            nameJLabel.setBounds( 52, 200, 70, 35 );
            nameJLabel.setText("Name:");
            startJPanel.add( nameJLabel);
            //creates a new JTextField
            nameJTextField = new JTextField();
            nameJTextField.setBounds( 130, 200, 300, 24 );
            startJPanel.add( nameJTextField );
            //creates a newJLabel
            ageJLabel = new JLabel();
            ageJLabel.setBounds( 52, 245, 100, 35 );
            ageJLabel.setText("Age:");
            startJPanel.add( ageJLabel );
            //creates a new JTextField
            ageJTextField = new JTextField();
            ageJTextField.setBounds( 130, 245, 300, 24 );
            startJPanel.add( ageJTextField );
            //creates a JButton
            loginJButton = new JButton();
            loginJButton.setBounds( 440, 200, 90, 24 );
            loginJButton.setText( "Login" );
            loginJButton.setBackground( Color.YELLOW );
            startJPanel.add( loginJButton );
            loginJButton.setEnabled(true);
            loginJButton.addActionListener(
                new ActionListener()    // adds an action listener,anonymous inner class
                    // event handler called when search is pressed
                    public void actionPerformed( ActionEvent event )
                        // not necessary to pass events to these methods...
                        Login();  // calls the Login method                       
            //creates a JButton
            showJButton = new JButton();
            showJButton.setBounds( 200, 320, 180, 24 );
            showJButton.setText( "Show previous results" );
            showJButton.setBackground( Color.YELLOW );
            startJPanel.add( showJButton );
            showJButton.setEnabled(true);
            showJButton.addActionListener(
                new ActionListener()    // adds an action listener,anonymous inner class
                    // event handler called when search is pressed
                    public void actionPerformed( ActionEvent event )
                        showData();   // calls the showData method                       
            //sets up a JPanel
            showJPanel = new JPanel();
            showJPanel.setBounds( 16,16, 560, 375 );
            showJPanel.setBorder(new TitledBorder( "PREVIOUS RESULTS:" ) );
            showJPanel.setLayout( null );
            contentPane.add( showJPanel );
            //sets up a JPanel
            helpJPanel = new JPanel();
            helpJPanel.setBounds( 16,16, 560, 375 );
            helpJPanel.setBorder(
            new TitledBorder( "HELP DETAILS:" ) );
            helpJPanel.setLayout( null );
            helpJPanel.setVisible(false);
            contentPane.add( helpJPanel );
            //creates a newJLabel
            deJLabel= new JLabel();
            deJLabel.setBounds( 23, 390, 530, 35 );
            deJLabel.setText("Details:");
            contentPane.add( deJLabel);
            //creates a newJLabel
            de1JLabel= new JLabel();
            de1JLabel.setBounds( 25, 100, 530, 35 );
            de1JLabel.setText("You are about to start the reaction test, when you " +
                              "press the start button it will begin.");
            helpJPanel.add( de1JLabel);
            //creates a newJLabel
            de1JLabel= new JLabel();
            de1JLabel.setBounds(160, 145, 530, 35 );
            de1JLabel.setText("Simply catch the moving item and click.");
            helpJPanel.add( de1JLabel);
            //creates a newJLabel
            de2JLabel= new JLabel();
            de2JLabel.setBounds( 20, 380, 70, 35 );
            de2JLabel.setText("Details:");
            helpJPanel.add( de2JLabel);
            //creates a JButton
            startTestJButton = new JButton();
            startTestJButton.setBounds( 185, 205, 180, 60 );
            startTestJButton.setText( "START" );
            startTestJButton.setBackground( Color.YELLOW );
            helpJPanel.add( startTestJButton );
            startTestJButton.setEnabled(true);
            startTestJButton.addActionListener(
                new ActionListener() // adds an action listener,anonymous inner class
                    // event handler called when search is pressed
                    public void actionPerformed( ActionEvent event )
                        startTest();
            //sets up an animation panel
            testJPanel = new ShapeMovingPanel(this);
            testJPanel.setBounds( 16,16, 560, 375 );
            testJPanel.setBorder(new TitledBorder("Click the moving object:"));
            testJPanel.setLayout( null );
            testJPanel.setVisible(false);
            contentPane.add( testJPanel );
    // this is causing the animation to appear uneven
    // you can try the app with and without this to see
    //        testJPanel.addMouseMotionListener(this);
            //creates a newJLabel
            timeJLabel = new JLabel();
            timeJLabel.setBounds( 440, 330, 100, 35 );
            timeJLabel.setText("Time:");
            testJPanel.add( timeJLabel );
            //creates a new JTextField
            timerJTextField = new JTextField();
            timerJTextField.setBounds( 480, 335, 60, 24 );
            timerJTextField.setText(String.valueOf(timeLimit));
            timerJTextField.setHorizontalAlignment(JTextField.CENTER );
            timerJTextField.setEditable(false);
            timerJTextField.setBackground( Color.YELLOW );
            testJPanel.add( timerJTextField );
            resultsJPanel = new JPanel();
            resultsJPanel.setBounds( 16,16, 560, 375 );
            resultsJPanel.setBorder(new TitledBorder("HERE ARE YOUR RESULTS:"));
            resultsJPanel.setLayout( null );
            resultsJPanel.setVisible(false);
            contentPane.add( resultsJPanel );
            de3JLabel= new JLabel();
            de3JLabel.setBounds(20, 200, 530, 35 );
            de3JLabel.setText("Below is also the movements you made with your mouse, " +
                              "you may exit the program now.");
            resultsJPanel.add( de3JLabel);
            de4JLabel= new JLabel();
            de4JLabel.setBounds(135, 245, 530, 35 );
            de4JLabel.setText("Thank you for trying the Reaction Testing program");
            resultsJPanel.add( de4JLabel);
            //creates a newJLabel
            nameResultJLabel= new JLabel();
            nameResultJLabel.setBounds( 62, 55, 50, 35 );
            nameResultJLabel.setText("Name:");
            resultsJPanel.add( nameResultJLabel);
            //creates a new JTextField
            nameResultJTextField = new JTextField();
            nameResultJTextField.setBounds( 140, 55, 300, 24 );
            resultsJPanel.add( nameResultJTextField );
            nameResultJTextField.setEditable(false);
            //creates a newJLabel
            ageResultJLabel = new JLabel();
            ageResultJLabel.setBounds( 62, 90, 100, 35 );
            ageResultJLabel.setText("Age:");
            resultsJPanel.add( ageResultJLabel );
            //creates a new JTextField
            ageResultsJTextField = new JTextField();
            ageResultsJTextField.setBounds( 140, 90, 300, 24 );
            resultsJPanel.add( ageResultsJTextField );
            ageResultsJTextField.setEditable(false);
            //creates a newJLabel
            timeResultsJLabel = new JLabel();
            timeResultsJLabel.setBounds( 62, 125, 100, 35 );
            timeResultsJLabel.setText("Time taken:");
            resultsJPanel.add( timeResultsJLabel );
            //creates a new JTextField
            timeResultsJTextField = new JTextField();
            timeResultsJTextField.setBounds( 140, 125, 300, 24 );
            resultsJPanel.add( timeResultsJTextField );
            timeResultsJTextField.setEditable(false);
            //creates a newJLabel
            ratingJLabel = new JLabel();
            ratingJLabel.setBounds( 62, 160, 100, 35 );
            ratingJLabel.setText("Your Rating:");
            resultsJPanel.add( ratingJLabel );
            ratingJTextField = new JTextField();
            ratingJTextField.setBounds( 140, 160, 300, 24 );
            resultsJPanel.add( ratingJTextField );
            ratingJTextField.setEditable(false);
            //creates a JButton
            exitJButton = new JButton();
            exitJButton.setBounds( 235, 310, 90, 24 );
            exitJButton.setText( "Exit" );
            exitJButton.setBackground( Color.WHITE );
            resultsJPanel.add( exitJButton );
            exitJButton.setEnabled(true);
            exitJButton.addActionListener(
                new ActionListener() // adds an action listener,anonymous inner class
                    // event handler called when exitJButton is pressed
                    public void actionPerformed( ActionEvent event )
                        System.exit(0); //closes the programme
            }); // end anonymous inner class
            addWindowListener(new WindowAdapter()
                public void windowClosing(WindowEvent e)
                    System.exit(0);
            // set properties of application's window
            setTitle( "Reaction Tester - CMT3991" ); // set JFrame's title bar string
            //setSize( 1280,995 );    // set width and height of JFrame
            setSize( 608, 650 );         // set width and height of JFrame
            setVisible( true );       // display JFrame on screen
        //** set up of method main */
        public static void main( String[] args )
            RT application = new RT();
            application.setDefaultCloseOperation( EXIT_ON_CLOSE );
        } // end method main
        private void Login()
            try
                name = nameJTextField.getText();
                age = Integer.parseInt(ageJTextField.getText());
                startJPanel.setVisible(false);
                showJPanel.setVisible(false);
                helpJPanel.setVisible(true);
                infoJTextArea.setText("\n    Welcome "+name+" you will soon know how " +
                                      "fast your reactions are");
            catch (NumberFormatException exception)
                JOptionPane.showMessageDialog(this,
                        "There is either a blank field or a number hasn't been entered",
                        "Input Type error", JOptionPane.ERROR_MESSAGE);
                //shows this is something has been entered wrong
        private void startTest()
            helpJPanel.setVisible(false);
            shape = shapes[seed.nextInt(shapes.length)];
            testJPanel.setShape(shape);
            testJPanel.setVisible(true);
            testJPanel.start();
            startTime = System.currentTimeMillis();
            infoJTextArea.setText("");
         * called by animation panel after shape is clicked
        public void stop()
            endTime = System.currentTimeMillis();
            movingObject();
         * called by timer actionPerformed in ShapeMovingPanel
        public void updateTime()
            long timeNow = System.currentTimeMillis();
            double elapsed = (timeNow - startTime)/1000.0;
            timerJTextField.setText(timeDec.format(elapsed));
         * this will compete with your animation
         * ie, it will slow it down or make it appear jerky
        public void mouseMoved(MouseEvent e)
            saySomething("\n    Mouse moved", e);
        public void mouseDragged(MouseEvent e)
            saySomething("\n    Mouse dragged", e);
        void saySomething(String eventDescription, MouseEvent e)
            infoJTextArea.append(eventDescription
                         + " (" + e.getX() + "," + e.getY() + ")");
            infoJTextArea.setCaretPosition(infoJTextArea.getDocument().getLength());
        private void movingObject()
            testJPanel.setVisible(false);
            resultsJPanel.setVisible(true);
            nameResultJTextField.setText(name);
            ageResultsJTextField.setText(String.valueOf(age)+" years old");
            double elapsedTime = (endTime - startTime)/1000.0;
            timeLimit = (int)elapsedTime;
            timeResultsJTextField.setText(timeDec.format(elapsedTime)+" seconds");
            String mouse = infoJTextArea.getText();
            String tick = timeDec.format(elapsedTime);
            try
                // create a file called welch.txt
                final FileWriter outputFile = new FileWriter(name+".txt", true);
                final BufferedWriter outputBuffer = new BufferedWriter(outputFile);
                // converts data to a formatted string
                final PrintWriter printstream = new PrintWriter(outputBuffer);
                printstream.println("The person's name is: "+name);
                printstream.println("There age is: "+age);
                printstream.println("Time taken: "+tick+" seconds");
                printstream.println("The mouse moved as follows: "+mouse);
                //states what needs to be printed to the new file
                printstream.close(); // closes teh printstream
            catch(IOException eio)
                //catchs the IO exception
            if(timeLimit<5)
                ratingJTextField.setText("Thierry Henry");     
            if(timeLimit>5)
                ratingJTextField.setText("Average");     
            if(timeLimit>10)
                ratingJTextField.setText("You gotta be fat or something");     
            if(timeLimit>20)
                ratingJTextField.setText("See a doctor");
            String rate=ratingJTextField.getText();
        private void showData()
    //        String results = "";
    //        infoJTextArea.setText("Here are your results:\n"+results);
            startJPanel.setVisible(false);
            showJPanel.setVisible(true);
    class ShapeMovingPanel extends JPanel implements ActionListener
        RT host;
        Timer timer;
        Shape shape, xformed;
        int x, y, dx, dy;
        public ShapeMovingPanel(RT rt)
            host = rt;
            timer = new Timer(25, this);
            x = 0;
            y = 0;
            dx = 2;
            dy = 3;
            setBackground(Color.pink);
            addMouseListener(new ShapeTender());
        public void actionPerformed(ActionEvent e)
            int w = getWidth();
            int h = getHeight();
            if(w <= 0 || h <= 0)
                return;
            checkBoundries(w,h);
            x += dx;
            y += dy;
            repaint();
            // update RT.timerJTextField
            host.updateTime();
        private void checkBoundries(int w, int h)
            Rectangle r = xformed.getBounds();
            Insets insets = getInsets();
            if(r.x + dx < insets.left || r.x + r.width + dx > w - insets.right)
                dx *= -1;
            if(r.y + dy < insets.top || r.y + r.height + dy > h - insets.bottom)
                dy *= -1;
        protected void paintComponent(Graphics g)
            super.paintComponent(g);
            Graphics2D g2 = (Graphics2D)g;
            g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                                RenderingHints.VALUE_ANTIALIAS_ON);
            AffineTransform at = AffineTransform.getTranslateInstance(x, y);
            g2.setPaint(Color.red);
            xformed = at.createTransformedShape(shape);
            g2.draw(xformed);
        public void start()
            if(!timer.isRunning())
                timer.start();
        public void setShape(Shape s)
            shape = s;
            Rectangle r = shape.getBounds();
            x = r.x;
            y = r.y;
            repaint();
        private class ShapeTender extends MouseAdapter
            public void mousePressed(MouseEvent e)
                if(xformed.contains(e.getPoint()))
                    timer.stop();
                    host.stop();
    }

  • Need some help with Slow Downs in Java3D and Servlets

    Hi,
    I realize that there is a separate forum for Java 3D, but I posted there, and did not get any response. This is kinda the crux of my program, so I would like to invite anybody on this forum with knowledge of Java 3D and servlets to give it a stab. Between this post and that one, there are TWENTY duke dollars up for grabs.
    Thanks.
    http://forum.java.sun.com/thread.jspa?threadID=603198

    Let me have an educated guess.
    You calculated the time elapsed before sending in a server request - and at that point you have you updated timeLastStateChange yet, which means by the time of the next calculation of time elapsed this apparent delay is not counted in, hence the slow down in animation rate.
    Hope this helps~
    Alex Lam S.L.

  • Where to find the best application for cleaning out my MacBook Air with OS X 10.7.5? I've been using MacKeeper but believe it's slowing down my laptop considerable.

    where to find the best application for cleaning out my MacBook Air with OS X 10.7.5? I've been using MacKeeper but believe it's slowing down my laptop considerable. Thank you.

    How to maintain a Mac
    1. Make redundant backups, keeping at least one off site at all times. One backup is not enough. Don’t back up your backups; make them independent of each other. Don’t rely completely on any single backup method, such as Time Machine. If you get an indication that a backup has failed, don't ignore it.
    2. Keep your software up to date. In the Software Update preference pane, you can configure automatic notifications of updates to OS X and other Mac App Store products. Some third-party applications from other sources have a similar feature, if you don’t mind letting them phone home. Otherwise you have to check yourself on a regular basis. This is especially important for complex software that modifies the operating system, such as device drivers. Before installing any Apple update, you must check that all such modifications that you use are compatible.
    3. Don't install crapware, such as “themes,” "haxies," “add-ons,” “toolbars,” “enhancers," “optimizers,” “accelerators,” "boosters," “extenders,” “cleaners,” "doctors," "tune-ups," “defragmenters,” “firewalls,” "barriers," “guardians,” “defenders,” “protectors,” most “plugins,” commercial "virus scanners,” "disk tools," or "utilities." With very few exceptions, this stuff is useless, or worse than useless. Above all, avoid any software that purports to change the look and feel of the user interface.
    The more actively promoted the product, the more likely it is to be garbage. The most extreme example is the “MacKeeper” scam.
    As a rule, the only software you should install is that which directly enables you to do the things you use a computer for — such as creating, communicating, and playing — and does not modify the way other software works. Use your computer; don't fuss with it.
    Safari extensions, and perhaps the equivalent for other web browsers, are a partial exception to the above rule. Most are safe, and they're easy to get rid of if they don't work. Some may cause the browser to crash or otherwise malfunction.  Some are malicious. Use with caution, and install only well-known extensions from relatively trustworthy sources, such as the Safari Extensions Gallery.
    Never install any third-party software unless you know how to uninstall it. Otherwise you may create problems that are very hard to solve.
    4. Beware of trojans. A trojan is malicious software (“malware”) that the user is duped into installing voluntarily. Such attacks were rare on the Mac platform until sometime in 2011, but are now increasingly common, and increasingly dangerous.
    There is some built-in protection against downloading malware, but you can’t rely on it — the attackers are always at least one day ahead of the defense. You can’t rely on third-party protection either. What you can rely on is common-sense awareness — not paranoia, which only makes you more vulnerable.
    Never install software from an untrustworthy or unknown source. If in doubt, do some research. Any website that prompts you to install a “codec” or “plugin” that comes from the same site, or an unknown site, is untrustworthy. Software with a corporate brand, such as Adobe Flash Player, must be acquired directly from the developer. No intermediary is acceptable, and don’t trust links unless you know how to parse them. Any file that is automatically downloaded from a web page without your having requested it should go straight into the Trash. A website that claims you have a “virus,” or that anything else is wrong with your computer, is rogue.
    In OS X 10.7.5 or later, downloaded applications and Installer packages that have not been digitally signed by a developer registered with Apple are blocked from loading by default. The block can be overridden, but think carefully before you do so.
    Because of recurring security issues in Java, it’s best to disable it in your web browsers, if it’s installed. Few websites have Java content nowadays, so you won’t be missing much. This action is mandatory if you’re running any version of OS X older than 10.6.8 with the latest Java update. Note: Java has nothing to do with JavaScript, despite the similar names. Don't install Java unless you're sure you need it. Most people don't.
    5. Don't fill up your boot volume. A common mistake is adding more and more large files to your home folder until you start to get warnings that you're out of space, which may be followed in short order by a boot failure. This is more prone to happen on the newer Macs that come with an internal SSD instead of the traditional hard drive. The drive can be very nearly full before you become aware of the problem. While it's not true that you should or must keep any particular percentage of space free, you should monitor your storage consumption and make sure you're not in immediate danger of using it up. According to Apple documentation, you need at least 9 GB of free space on the startup volume for normal operation.
    If storage space is running low, use a tool such as the free application OmniDiskSweeper to explore your volume and find out what's taking up the most space. Move rarely-used large files to secondary storage.
    6. Relax, don’t do it. Besides the above, no routine maintenance is necessary or beneficial for the vast majority of users; specifically not “cleaning caches,” “zapping the PRAM,” "resetting the SMC," “rebuilding the directory,” "defragmenting the drive," “running periodic scripts,” “dumping logs,” "deleting temp files," “scanning for viruses,” "purging memory," "checking for bad blocks," "testing the hardware," or “repairing permissions.” Such measures are either completely pointless or are useful only for solving problems, not for prevention.
    The very height of futility is running an expensive third-party application called “Disk Warrior” when nothing is wrong, or even when something is wrong and you have backups, which you must have. Disk Warrior is a data-salvage tool, not a maintenance tool, and you will never need it if your backups are adequate. Don’t waste money on it or anything like it.

  • IMac slowing down

    My 27" iMac, late 2009, Mountain Lion has 164 GB free space of 500 GB total, and has slowed down noticeably the past month. There are three additional HD's connected, could that be part of the problem? Photoshop operations are the most affected, I'd say, PS6 is installed. PS Bridge also. Thanks very much.

    5/19/13 9:54:44.701 AM sandboxd[498]: ([497]) mdworker(497) deny mach-lookup com.apple.ls.boxd
    5/19/13 9:54:45.000 AM kernel[0]: Sandbox: sandboxd(498) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 9:56:13.947 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 9:58:46.415 AM mdworker[504]: Unable to talk to lsboxd
    5/19/13 9:58:46.463 AM sandboxd[505]: ([504]) mdworker(504) deny mach-lookup com.apple.ls.boxd
    5/19/13 9:58:46.000 AM kernel[0]: Sandbox: sandboxd(505) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 10:00:11.106 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 10:00:41.141 AM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x16-10.0.1.7:0!
    5/19/13 10:00:49.814 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 10:05:53.943 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 10:06:22.935 AM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x18-10.0.1.7:0!
    5/19/13 10:06:44.939 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 10:06:47.184 AM mdworker[516]: Unable to talk to lsboxd
    5/19/13 10:06:47.238 AM sandboxd[518]: ([516]) mdworker(516) deny mach-lookup com.apple.ls.boxd
    5/19/13 10:06:47.000 AM kernel[0]: Sandbox: sandboxd(518) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 10:07:14.000 AM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=521[GoogleSoftwareUp] clearing CS_VALID
    5/19/13 10:08:35.363 AM com.apple.backupd[526]: Starting automatic backup
    5/19/13 10:08:35.373 AM com.apple.backupd[526]: Attempting to mount network destination URL: afp://johnp;[email protected]/Data
    5/19/13 10:08:35.519 AM com.apple.kextd[14]: Can't create kext cache under / - owner not root.
    5/19/13 10:08:35.934 AM com.apple.kextd[14]: Can't create kext cache under / - owner not root.
    5/19/13 10:08:41.000 AM kernel[0]: AppleSRP started.
    5/19/13 10:08:49.366 AM com.apple.backupd[526]: Mounted network destination at mount point: /Volumes/Data using URL: afp://johnp;[email protected]/Data
    5/19/13 10:08:49.000 AM kernel[0]: ASP_TCP asp_tcp_usr_control: invalid kernelUseCount 0
    5/19/13 10:08:49.000 AM kernel[0]: AFP_VFS afpfs_mount: /Volumes/Data, pid 528
    5/19/13 10:08:49.000 AM kernel[0]: AFP_VFS afpfs_mount : succeeded on volume 0xffffff814afa9008 /Volumes/Data (error = 0, retval = 0)
    5/19/13 10:09:12.887 AM mds[34]: (Error) Volume: Root store set to FSOnly with matching create! (loaded:1)
    5/19/13 10:09:13.560 AM com.apple.backupd[526]: Disk image /Volumes/Data/Big iMac (7).sparsebundle mounted at: /Volumes/Time Machine Backups
    5/19/13 10:09:13.672 AM com.apple.backupd[526]: Backing up to: /Volumes/Time Machine Backups/Backups.backupdb
    5/19/13 10:09:14.000 AM kernel[0]: AppleBCM5701Ethernet:        0        1 BCM5701Enet::replaceOrCopyPacket worked after N tries
    5/19/13 10:09:29.396 AM com.apple.backupd[526]: Using file event preflight for 27iMac
    5/19/13 10:09:34.515 AM com.apple.backupd[526]: Will copy (268.1 MB) from 27iMac
    5/19/13 10:09:34.531 AM com.apple.backupd[526]: Using file event preflight for LaCie 1 TB
    5/19/13 10:09:34.701 AM com.apple.backupd[526]: Will copy (43 KB) from LaCie 1 TB
    5/19/13 10:09:34.720 AM com.apple.backupd[526]: Found 1108 files (268.1 MB) needing backup
    5/19/13 10:09:34.729 AM com.apple.backupd[526]: 2.87 GB required (including padding), 1.53 TB available
    5/19/13 10:10:48.149 AM com.apple.SecurityServer[25]: Session 100013 created
    5/19/13 10:10:49.130 AM com.apple.SecurityServer[25]: Session 100014 created
    5/19/13 10:11:06.000 AM kernel[0]: disk0s2: I/O error.
    5/19/13 10:11:22.000 AM kernel[0]: disk0s2: I/O error.
    5/19/13 10:11:35.000 AM kernel[0]: disk0s2: I/O error.
    5/19/13 10:11:35.992 AM com.apple.backupd[526]: Error: (-36) SrcErr:YES Copying /Users/micasa/Desktop/Adobe Photo Downloader/20130511/_MG_7646.CR2 to (null)
    5/19/13 10:11:36.268 AM mdworker[585]: Unable to talk to lsboxd
    5/19/13 10:11:36.319 AM sandboxd[586]: ([585]) mdworker(585) deny mach-lookup com.apple.ls.boxd
    5/19/13 10:11:36.000 AM kernel[0]: Sandbox: sandboxd(586) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 10:13:36.103 AM com.apple.backupd[526]: Copied 8404 files (1.36 GB) from volume 27iMac.
    5/19/13 10:13:44.301 AM com.apple.backupd[526]: Copied 8599 files (1.36 GB) from volume LaCie 1 TB.
    5/19/13 10:13:44.432 AM com.apple.backupd[526]: Using file event preflight for 27iMac
    5/19/13 10:13:44.437 AM com.apple.backupd[526]: Will copy (1.2 MB) from 27iMac
    5/19/13 10:13:44.439 AM com.apple.backupd[526]: Found 27 files (1.2 MB) needing backup
    5/19/13 10:13:44.440 AM com.apple.backupd[526]: 2.55 GB required (including padding), 1.53 TB available
    5/19/13 10:13:56.667 AM com.apple.backupd[526]: Copied 722 files (1.2 MB) from volume 27iMac.
    5/19/13 10:14:00.312 AM com.apple.backupd[526]: Copied 729 files (1.2 MB) from volume LaCie 1 TB.
    5/19/13 10:14:01.475 AM com.apple.backupd[526]: Created new backup: 2013-05-19-101400
    5/19/13 10:14:02.067 AM com.apple.backupd[526]: Starting post-backup thinning
    5/19/13 10:14:23.198 AM com.apple.backupd[526]: Deleted /Volumes/Time Machine Backups/Backups.backupdb/Big iMac (7)/2013-04-19-082302 (238.3 MB)
    5/19/13 10:14:32.787 AM com.apple.backupd[526]: Deleted /Volumes/Time Machine Backups/Backups.backupdb/Big iMac (7)/2013-04-18-093806 (29.2 MB)
    5/19/13 10:14:42.979 AM com.apple.backupd[526]: Deleted /Volumes/Time Machine Backups/Backups.backupdb/Big iMac (7)/2013-04-17-140654 (47.5 MB)
    5/19/13 10:14:42.979 AM com.apple.backupd[526]: Post-back up thinning complete: 3 expired backups removed
    5/19/13 10:14:43.092 AM com.apple.backupd[526]: Backup completed successfully.
    5/19/13 10:14:48.435 AM com.apple.backupd[526]: Ejected Time Machine disk image: /Volumes/Data/Big iMac (7).sparsebundle
    5/19/13 10:14:49.000 AM kernel[0]: AFP_VFS afpfs_unmount: /Volumes/Data, flags 0, pid 620
    5/19/13 10:14:49.351 AM com.apple.backupd[526]: Ejected Time Machine network volume.
    5/19/13 10:14:49.352 AM com.apple.backupd[526]: Running automatic backup verification.
    5/19/13 10:14:49.352 AM com.apple.backupd[526]: Attempting to mount network destination URL: afp://johnp;[email protected]/Data
    5/19/13 10:14:49.000 AM kernel[0]: AFP_VFS afpfs_unmount : We are the last mnt/sbmnt using volume /Volumes/Data 0xffffff814afa9008
    5/19/13 10:14:49.000 AM kernel[0]: AFP_VFS afpfs_unmount : We are the last volume using socket /Volumes/Data 0xffffff814afa9008
    5/19/13 10:14:49.000 AM kernel[0]: AFP_VFS afpfs_unmount : afpfs_DoReconnect sent signal for unmount to proceed
    5/19/13 10:14:49.844 AM com.apple.backupd[526]: Mounted network destination at mount point: /Volumes/Data using URL: afp://johnp;[email protected]/Data
    5/19/13 10:14:50.000 AM kernel[0]: ASP_TCP asp_tcp_usr_control: invalid kernelUseCount 0
    5/19/13 10:14:50.000 AM kernel[0]: AFP_VFS afpfs_mount: /Volumes/Data, pid 622
    5/19/13 10:14:50.000 AM kernel[0]: AFP_VFS afpfs_mount : succeeded on volume 0xffffff814b022008 /Volumes/Data (error = 0, retval = 0)
    5/19/13 10:14:53.072 AM com.apple.backupd[526]: Verifying backup disk image.
    5/19/13 10:15:11.938 AM mdworker[641]: Unable to talk to lsboxd
    5/19/13 10:15:12.000 AM kernel[0]: Sandbox: sandboxd(644) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 10:15:12.924 AM sandboxd[644]: ([641]) mdworker(641) deny mach-lookup com.apple.ls.boxd
    5/19/13 10:15:33.018 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 10:16:03.229 AM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x1a-10.0.1.7:0!
    5/19/13 10:16:55.143 AM WindowServer[115]: CGXSetWindowBackgroundBlurRadius: Invalid window 0xffffffff
    5/19/13 10:16:55.242 AM loginwindow[38]: find_shared_window: WID -1
    5/19/13 10:16:55.242 AM loginwindow[38]: CGSGetWindowTags: Invalid window 0xffffffff
    5/19/13 10:16:55.242 AM loginwindow[38]: find_shared_window: WID -1
    5/19/13 10:16:55.242 AM loginwindow[38]: CGSSetWindowTags: Invalid window 0xffffffff
    5/19/13 10:16:55.698 AM coreservicesd[71]: Application App:"loginwindow" [ 0x0/0x1001]  @ 0x0x7feea3e27a40 tried to be brought forward, but isn't in fPermittedFrontASNs ( ( ASN:0x0-0xa10a1:) ), so denying.
    5/19/13 10:16:55.698 AM WindowServer[115]: [cps/setfront] Failed setting the front application to loginwindow, psn 0x0-0x1001, securitySessionID=0x186a3, err=-13066
    5/19/13 10:19:53.250 AM diskarbitrationd[49]: loginwindow [38]:45339 not responding.
    5/19/13 10:21:16.038 AM mdworker[672]: Unable to talk to lsboxd
    5/19/13 10:21:16.099 AM sandboxd[675]: ([672]) mdworker(672) deny mach-lookup com.apple.ls.boxd
    5/19/13 10:21:16.000 AM kernel[0]: Sandbox: sandboxd(675) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 10:21:34.901 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 10:22:52.124 AM com.apple.backupd[526]: Backup verification passed!
    5/19/13 10:23:18.342 AM mdworker[682]: Unable to talk to lsboxd
    5/19/13 10:23:18.389 AM sandboxd[683]: ([682]) mdworker(682) deny mach-lookup com.apple.ls.boxd
    5/19/13 10:23:18.000 AM kernel[0]: Sandbox: sandboxd(683) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 10:25:15.164 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 10:25:42.916 AM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x1c-10.0.1.7:0!
    5/19/13 10:26:39.952 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 10:27:20.173 AM mdworker[687]: Unable to talk to lsboxd
    5/19/13 10:27:20.240 AM sandboxd[693]: ([687]) mdworker(687) deny mach-lookup com.apple.ls.boxd
    5/19/13 10:27:20.000 AM kernel[0]: Sandbox: sandboxd(693) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 10:31:21.939 AM mdworker[702]: Unable to talk to lsboxd
    5/19/13 10:31:21.989 AM sandboxd[703]: ([702]) mdworker(702) deny mach-lookup com.apple.ls.boxd
    5/19/13 10:31:22.000 AM kernel[0]: Sandbox: sandboxd(703) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 10:33:22.745 AM mdworker[711]: Unable to talk to lsboxd
    5/19/13 10:33:22.811 AM sandboxd[715]: ([711]) mdworker(711) deny mach-lookup com.apple.ls.boxd
    5/19/13 10:33:22.000 AM kernel[0]: Sandbox: sandboxd(715) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 10:34:53.931 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 10:35:23.904 AM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x1e-10.0.1.7:0!
    5/19/13 10:36:24.862 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 10:37:24.552 AM mdworker[725]: Unable to talk to lsboxd
    5/19/13 10:37:24.620 AM sandboxd[728]: ([725]) mdworker(725) deny mach-lookup com.apple.ls.boxd
    5/19/13 10:37:25.000 AM kernel[0]: Sandbox: sandboxd(728) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 10:41:26.317 AM mdworker[736]: Unable to talk to lsboxd
    5/19/13 10:41:26.365 AM sandboxd[737]: ([736]) mdworker(736) deny mach-lookup com.apple.ls.boxd
    5/19/13 10:41:26.000 AM kernel[0]: Sandbox: sandboxd(737) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 10:43:28.105 AM mdworker[742]: Unable to talk to lsboxd
    5/19/13 10:43:28.154 AM sandboxd[743]: ([742]) mdworker(742) deny mach-lookup com.apple.ls.boxd
    5/19/13 10:43:28.000 AM kernel[0]: Sandbox: sandboxd(743) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 10:44:33.007 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 10:45:02.885 AM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x20-10.0.1.7:0!
    5/19/13 10:47:29.921 AM mdworker[750]: Unable to talk to lsboxd
    5/19/13 10:47:29.986 AM sandboxd[753]: ([750]) mdworker(750) deny mach-lookup com.apple.ls.boxd
    5/19/13 10:47:30.000 AM kernel[0]: Sandbox: sandboxd(753) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 10:51:16.977 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 10:51:33.259 AM mdworker[768]: Unable to talk to lsboxd
    5/19/13 10:51:33.307 AM sandboxd[769]: ([768]) mdworker(768) deny mach-lookup com.apple.ls.boxd
    5/19/13 10:51:33.000 AM kernel[0]: Sandbox: sandboxd(769) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 10:53:35.049 AM mdworker[773]: Unable to talk to lsboxd
    5/19/13 10:53:35.100 AM sandboxd[774]: ([773]) mdworker(773) deny mach-lookup com.apple.ls.boxd
    5/19/13 10:53:35.000 AM kernel[0]: Sandbox: sandboxd(774) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 10:54:13.000 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 10:54:42.809 AM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x22-10.0.1.7:0!
    5/19/13 10:59:39.946 AM mdworker[794]: Unable to talk to lsboxd
    5/19/13 10:59:39.995 AM sandboxd[795]: ([794]) mdworker(794) deny mach-lookup com.apple.ls.boxd
    5/19/13 10:59:40.000 AM kernel[0]: Sandbox: sandboxd(795) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 11:01:40.742 AM mdworker[801]: Unable to talk to lsboxd
    5/19/13 11:01:40.794 AM sandboxd[803]: ([801]) mdworker(801) deny mach-lookup com.apple.ls.boxd
    5/19/13 11:01:41.000 AM kernel[0]: Sandbox: sandboxd(803) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 11:03:42.869 AM mdworker[810]: Unable to talk to lsboxd
    5/19/13 11:03:42.919 AM sandboxd[811]: ([810]) mdworker(810) deny mach-lookup com.apple.ls.boxd
    5/19/13 11:03:43.000 AM kernel[0]: Sandbox: sandboxd(811) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 11:03:52.995 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 11:04:22.860 AM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x23-10.0.1.7:0!
    5/19/13 11:05:57.000 AM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=827[GoogleSoftwareUp] clearing CS_VALID
    5/19/13 11:06:05.706 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 11:08:17.341 AM mdworker[840]: Unable to talk to lsboxd
    5/19/13 11:08:17.394 AM sandboxd[841]: ([840]) mdworker(840) deny mach-lookup com.apple.ls.boxd
    5/19/13 11:08:17.000 AM kernel[0]: Sandbox: sandboxd(841) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 11:08:34.845 AM com.apple.backupd[844]: Starting automatic backup
    5/19/13 11:08:34.862 AM com.apple.backupd[844]: Network destination already mounted at: /Volumes/Data
    5/19/13 11:09:01.916 AM mds[34]: (Error) Volume: Root store set to FSOnly with matching create! (loaded:1)
    5/19/13 11:09:02.689 AM com.apple.backupd[844]: Disk image /Volumes/Data/Big iMac (7).sparsebundle mounted at: /Volumes/Time Machine Backups
    5/19/13 11:09:02.691 AM com.apple.backupd[844]: Backing up to: /Volumes/Time Machine Backups/Backups.backupdb
    5/19/13 11:09:05.396 AM com.apple.backupd[844]: Using file event preflight for 27iMac
    5/19/13 11:09:07.804 AM com.apple.backupd[844]: Will copy (1.3 MB) from 27iMac
    5/19/13 11:09:07.805 AM com.apple.backupd[844]: Using file event preflight for LaCie 1 TB
    5/19/13 11:09:07.805 AM com.apple.backupd[844]: Will copy (Zero KB) from LaCie 1 TB
    5/19/13 11:09:07.806 AM com.apple.backupd[844]: Found 54 files (1.3 MB) needing backup
    5/19/13 11:09:07.814 AM com.apple.backupd[844]: 104.9 MB required (including padding), 1.53 TB available
    5/19/13 11:09:07.815 AM com.apple.backupd[844]: Waiting for index to be ready (100)
    5/19/13 11:09:18.151 AM mdworker[869]: Unable to talk to lsboxd
    5/19/13 11:09:18.206 AM sandboxd[871]: ([869]) mdworker(869) deny mach-lookup com.apple.ls.boxd
    5/19/13 11:09:18.000 AM kernel[0]: Sandbox: sandboxd(871) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 11:09:42.566 AM com.apple.backupd[844]: Copied 1868 files (7.2 MB) from volume 27iMac.
    5/19/13 11:09:46.543 AM com.apple.backupd[844]: Copied 1875 files (7.2 MB) from volume LaCie 1 TB.
    5/19/13 11:09:46.573 AM com.apple.backupd[844]: Using file event preflight for 27iMac
    5/19/13 11:09:46.577 AM com.apple.backupd[844]: Will copy (1 MB) from 27iMac
    5/19/13 11:09:46.580 AM com.apple.backupd[844]: Found 27 files (1 MB) needing backup
    5/19/13 11:09:46.580 AM com.apple.backupd[844]: 2.55 GB required (including padding), 1.53 TB available
    5/19/13 11:10:00.753 AM com.apple.backupd[844]: Copied 705 files (1 MB) from volume 27iMac.
    5/19/13 11:10:04.275 AM com.apple.backupd[844]: Copied 712 files (1 MB) from volume LaCie 1 TB.
    5/19/13 11:10:04.866 AM com.apple.backupd[844]: Created new backup: 2013-05-19-111004
    5/19/13 11:10:05.251 AM com.apple.backupd[844]: Starting post-backup thinning
    5/19/13 11:10:17.744 AM com.apple.backupd[844]: Deleted /Volumes/Time Machine Backups/Backups.backupdb/Big iMac (7)/2013-05-15-193013 (7.9 MB)
    5/19/13 11:10:17.744 AM com.apple.backupd[844]: Post-back up thinning complete: 1 expired backups removed
    5/19/13 11:10:17.856 AM com.apple.backupd[844]: Backup completed successfully.
    5/19/13 11:10:21.667 AM com.apple.backupd[844]: Ejected Time Machine disk image: /Volumes/Data/Big iMac (7).sparsebundle
    5/19/13 11:10:21.000 AM kernel[0]: AFP_VFS afpfs_unmount: /Volumes/Data, flags 0, pid 880
    5/19/13 11:10:22.139 AM com.apple.backupd[844]: Ejected Time Machine network volume.
    5/19/13 11:10:22.000 AM kernel[0]: AFP_VFS afpfs_unmount : We are the last mnt/sbmnt using volume /Volumes/Data 0xffffff814b022008
    5/19/13 11:10:22.000 AM kernel[0]: AFP_VFS afpfs_unmount : We are the last volume using socket /Volumes/Data 0xffffff814b022008
    5/19/13 11:10:22.000 AM kernel[0]: AFP_VFS afpfs_unmount : afpfs_DoReconnect sent signal for unmount to proceed
    5/19/13 11:11:20.009 AM mdworker[887]: Unable to talk to lsboxd
    5/19/13 11:11:20.070 AM sandboxd[890]: ([887]) mdworker(887) deny mach-lookup com.apple.ls.boxd
    5/19/13 11:11:20.000 AM kernel[0]: Sandbox: sandboxd(890) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 11:13:33.912 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 11:15:23.412 AM mdworker[906]: Unable to talk to lsboxd
    5/19/13 11:15:23.481 AM sandboxd[909]: ([906]) mdworker(906) deny mach-lookup com.apple.ls.boxd
    5/19/13 11:15:23.000 AM kernel[0]: Sandbox: sandboxd(909) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 11:19:25.217 AM mdworker[918]: Unable to talk to lsboxd
    5/19/13 11:19:25.284 AM sandboxd[921]: ([918]) mdworker(918) deny mach-lookup com.apple.ls.boxd
    5/19/13 11:19:25.000 AM kernel[0]: Sandbox: sandboxd(921) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 11:20:54.745 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 11:21:26.014 AM mdworker[927]: Unable to talk to lsboxd
    5/19/13 11:21:26.000 AM kernel[0]: Sandbox: sandboxd(928) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 11:21:26.278 AM sandboxd[928]: ([927]) mdworker(927) deny mach-lookup com.apple.ls.boxd
    5/19/13 11:22:11.852 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 11:22:41.877 AM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x27-10.0.1.7:0!
    5/19/13 11:26:07.171 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 11:26:08.704 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 11:26:31.436 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 11:26:34.203 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 11:29:29.966 AM mdworker[949]: Unable to talk to lsboxd
    5/19/13 11:29:30.024 AM sandboxd[951]: ([949]) mdworker(949) deny mach-lookup com.apple.ls.boxd
    5/19/13 11:29:30.000 AM kernel[0]: Sandbox: sandboxd(951) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 11:31:30.768 AM mdworker[965]: Unable to talk to lsboxd
    5/19/13 11:31:30.821 AM sandboxd[966]: ([965]) mdworker(965) deny mach-lookup com.apple.ls.boxd
    5/19/13 11:31:31.000 AM kernel[0]: Sandbox: sandboxd(966) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 11:33:32.571 AM mdworker[975]: Unable to talk to lsboxd
    5/19/13 11:33:32.638 AM sandboxd[978]: ([975]) mdworker(975) deny mach-lookup com.apple.ls.boxd
    5/19/13 11:33:33.000 AM kernel[0]: Sandbox: sandboxd(978) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 11:35:44.705 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 11:37:34.616 AM mdworker[988]: Unable to talk to lsboxd
    5/19/13 11:37:34.679 AM sandboxd[991]: ([988]) mdworker(988) deny mach-lookup com.apple.ls.boxd
    5/19/13 11:37:35.000 AM kernel[0]: Sandbox: sandboxd(991) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 11:39:36.385 AM mdworker[1000]: Unable to talk to lsboxd
    5/19/13 11:39:36.436 AM sandboxd[1001]: ([1000]) mdworker(1000) deny mach-lookup com.apple.ls.boxd
    5/19/13 11:39:36.000 AM kernel[0]: Sandbox: sandboxd(1001) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 11:40:52.828 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 11:41:22.730 AM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x2e-10.0.1.7:0!
    5/19/13 11:41:38.145 AM mdworker[1004]: Unable to talk to lsboxd
    5/19/13 11:41:38.194 AM sandboxd[1005]: ([1004]) mdworker(1004) deny mach-lookup com.apple.ls.boxd
    5/19/13 11:41:38.000 AM kernel[0]: Sandbox: sandboxd(1005) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 11:47:41.519 AM mdworker[1021]: Unable to talk to lsboxd
    5/19/13 11:47:41.587 AM sandboxd[1024]: ([1021]) mdworker(1021) deny mach-lookup com.apple.ls.boxd
    5/19/13 11:47:41.000 AM kernel[0]: Sandbox: sandboxd(1024) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 11:49:44.917 AM mdworker[1033]: Unable to talk to lsboxd
    5/19/13 11:49:44.968 AM sandboxd[1035]: ([1033]) mdworker(1033) deny mach-lookup com.apple.ls.boxd
    5/19/13 11:49:45.000 AM kernel[0]: Sandbox: sandboxd(1035) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 11:50:33.746 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 11:51:02.729 AM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x2f-10.0.1.7:0!
    5/19/13 11:51:46.701 AM mdworker[1038]: Unable to talk to lsboxd
    5/19/13 11:51:46.750 AM sandboxd[1040]: ([1038]) mdworker(1038) deny mach-lookup com.apple.ls.boxd
    5/19/13 11:51:46.000 AM kernel[0]: Sandbox: sandboxd(1040) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 11:57:50.095 AM mdworker[1058]: Unable to talk to lsboxd
    5/19/13 11:57:50.156 AM sandboxd[1061]: ([1058]) mdworker(1058) deny mach-lookup com.apple.ls.boxd
    5/19/13 11:57:50.000 AM kernel[0]: Sandbox: sandboxd(1061) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 11:58:50.869 AM mdworker[1067]: Unable to talk to lsboxd
    5/19/13 11:58:50.922 AM sandboxd[1068]: ([1067]) mdworker(1067) deny mach-lookup com.apple.ls.boxd
    5/19/13 11:58:50.000 AM kernel[0]: Sandbox: sandboxd(1068) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 11:59:39.640 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:00:09.702 PM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x31-10.0.1.8:0!
    5/19/13 12:00:13.739 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:00:42.731 PM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x32-10.0.1.7:0!
    5/19/13 12:00:52.683 PM mdworker[1074]: Unable to talk to lsboxd
    5/19/13 12:00:52.747 PM sandboxd[1078]: ([1074]) mdworker(1074) deny mach-lookup com.apple.ls.boxd
    5/19/13 12:00:53.000 PM kernel[0]: Sandbox: sandboxd(1078) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 12:04:40.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=1092[GoogleSoftwareUp] clearing CS_VALID
    5/19/13 12:04:47.477 PM com.apple.SecurityServer[25]: Session 100016 created
    5/19/13 12:04:48.686 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:04:56.029 PM mdworker[1098]: Unable to talk to lsboxd
    5/19/13 12:04:56.078 PM sandboxd[1099]: ([1098]) mdworker(1098) deny mach-lookup com.apple.ls.boxd
    5/19/13 12:04:56.000 PM kernel[0]: Sandbox: sandboxd(1099) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 12:08:34.954 PM com.apple.backupd[1110]: Starting automatic backup
    5/19/13 12:08:34.963 PM com.apple.backupd[1110]: Attempting to mount network destination URL: afp://johnp;[email protected]/Data
    5/19/13 12:08:43.648 PM com.apple.backupd[1110]: Mounted network destination at mount point: /Volumes/Data using URL: afp://johnp;[email protected]/Data
    5/19/13 12:08:43.000 PM kernel[0]: ASP_TCP asp_tcp_usr_control: invalid kernelUseCount 0
    5/19/13 12:08:43.000 PM kernel[0]: AFP_VFS afpfs_mount: /Volumes/Data, pid 1112
    5/19/13 12:08:43.000 PM kernel[0]: AFP_VFS afpfs_mount : succeeded on volume 0xffffff814b031008 /Volumes/Data (error = 0, retval = 0)
    5/19/13 12:08:58.446 PM mdworker[1119]: Unable to talk to lsboxd
    5/19/13 12:08:58.513 PM sandboxd[1122]: ([1119]) mdworker(1119) deny mach-lookup com.apple.ls.boxd
    5/19/13 12:08:58.000 PM kernel[0]: Sandbox: sandboxd(1122) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 12:09:05.731 PM mds[34]: (Error) Volume: Root store set to FSOnly with matching create! (loaded:1)
    5/19/13 12:09:06.392 PM com.apple.backupd[1110]: Disk image /Volumes/Data/Big iMac (7).sparsebundle mounted at: /Volumes/Time Machine Backups
    5/19/13 12:09:06.430 PM com.apple.backupd[1110]: Backing up to: /Volumes/Time Machine Backups/Backups.backupdb
    5/19/13 12:09:07.767 PM com.apple.backupd[1110]: Using file event preflight for 27iMac
    5/19/13 12:09:08.750 PM com.apple.backupd[1110]: Will copy (5.7 MB) from 27iMac
    5/19/13 12:09:08.752 PM com.apple.backupd[1110]: Using file event preflight for LaCie 1 TB
    5/19/13 12:09:08.752 PM com.apple.backupd[1110]: Will copy (Zero KB) from LaCie 1 TB
    5/19/13 12:09:08.752 PM com.apple.backupd[1110]: Found 61 files (5.7 MB) needing backup
    5/19/13 12:09:08.761 PM com.apple.backupd[1110]: 2.55 GB required (including padding), 1.53 TB available
    5/19/13 12:09:46.037 PM com.apple.backupd[1110]: Copied 1850 files (11.6 MB) from volume 27iMac.
    5/19/13 12:09:50.037 PM com.apple.backupd[1110]: Copied 1857 files (11.6 MB) from volume LaCie 1 TB.
    5/19/13 12:09:50.043 PM com.apple.backupd[1110]: Using file event preflight for 27iMac
    5/19/13 12:09:50.047 PM com.apple.backupd[1110]: Will copy (28 KB) from 27iMac
    5/19/13 12:09:50.050 PM com.apple.backupd[1110]: Found 23 files (28 KB) needing backup
    5/19/13 12:09:50.050 PM com.apple.backupd[1110]: 2.55 GB required (including padding), 1.53 TB available
    5/19/13 12:09:52.812 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:10:01.724 PM com.apple.backupd[1110]: Copied 669 files (28 KB) from volume 27iMac.
    5/19/13 12:10:05.158 PM com.apple.backupd[1110]: Copied 676 files (28 KB) from volume LaCie 1 TB.
    5/19/13 12:10:05.681 PM com.apple.backupd[1110]: Created new backup: 2013-05-19-121005
    5/19/13 12:10:06.003 PM com.apple.backupd[1110]: Starting post-backup thinning
    5/19/13 12:10:06.003 PM com.apple.backupd[1110]: No post-back up thinning needed: no expired backups exist
    5/19/13 12:10:06.631 PM com.apple.backupd[1110]: Backup completed successfully.
    5/19/13 12:10:10.301 PM com.apple.backupd[1110]: Ejected Time Machine disk image: /Volumes/Data/Big iMac (7).sparsebundle
    5/19/13 12:10:10.799 PM com.apple.backupd[1110]: Ejected Time Machine network volume.
    5/19/13 12:10:10.000 PM kernel[0]: AFP_VFS afpfs_unmount: /Volumes/Data, flags 0, pid 1155
    5/19/13 12:10:10.000 PM kernel[0]: AFP_VFS afpfs_unmount : We are the last mnt/sbmnt using volume /Volumes/Data 0xffffff814b031008
    5/19/13 12:10:10.000 PM kernel[0]: AFP_VFS afpfs_unmount : We are the last volume using socket /Volumes/Data 0xffffff814b031008
    5/19/13 12:10:10.000 PM kernel[0]: AFP_VFS afpfs_unmount : afpfs_DoReconnect sent signal for unmount to proceed
    5/19/13 12:11:00.314 PM mdworker[1161]: Unable to talk to lsboxd
    5/19/13 12:11:00.371 PM sandboxd[1166]: ([1161]) mdworker(1161) deny mach-lookup com.apple.ls.boxd
    5/19/13 12:11:00.000 PM kernel[0]: Sandbox: sandboxd(1166) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 12:14:38.816 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:14:40.658 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:15:02.167 PM mdworker[1177]: Unable to talk to lsboxd
    5/19/13 12:15:02.229 PM sandboxd[1180]: ([1177]) mdworker(1177) deny mach-lookup com.apple.ls.boxd
    5/19/13 12:15:02.000 PM kernel[0]: Sandbox: sandboxd(1180) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 12:19:32.809 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:21:05.567 PM mdworker[1196]: Unable to talk to lsboxd
    5/19/13 12:21:05.628 PM sandboxd[1199]: ([1196]) mdworker(1196) deny mach-lookup com.apple.ls.boxd
    5/19/13 12:21:06.000 PM kernel[0]: Sandbox: sandboxd(1199) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 12:21:59.649 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:23:06.364 PM mdworker[1207]: Unable to talk to lsboxd
    5/19/13 12:23:06.418 PM sandboxd[1208]: ([1207]) mdworker(1207) deny mach-lookup com.apple.ls.boxd
    5/19/13 12:23:06.000 PM kernel[0]: Sandbox: sandboxd(1208) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 12:25:20.561 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:27:08.152 PM mdworker[1216]: Unable to talk to lsboxd
    5/19/13 12:27:08.213 PM sandboxd[1219]: ([1216]) mdworker(1216) deny mach-lookup com.apple.ls.boxd
    5/19/13 12:27:08.000 PM kernel[0]: Sandbox: sandboxd(1219) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 12:29:29.698 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:31:11.534 PM mdworker[1235]: Unable to talk to lsboxd
    5/19/13 12:31:11.596 PM sandboxd[1238]: ([1235]) mdworker(1235) deny mach-lookup com.apple.ls.boxd
    5/19/13 12:31:11.000 PM kernel[0]: Sandbox: sandboxd(1238) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 12:34:19.696 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:35:13.380 PM mdworker[1247]: Unable to talk to lsboxd
    5/19/13 12:35:13.442 PM sandboxd[1250]: ([1247]) mdworker(1247) deny mach-lookup com.apple.ls.boxd
    5/19/13 12:35:13.000 PM kernel[0]: Sandbox: sandboxd(1250) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 12:36:09.366 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:36:38.169 PM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x3e-10.0.1.7:0!
    5/19/13 12:41:49.133 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 04:f7:e4:01:54:5c@fe80::6f7:e4ff:fe01:545c._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:43:18.348 PM mdworker[1278]: Unable to talk to lsboxd
    5/19/13 12:43:18.412 PM sandboxd[1281]: ([1278]) mdworker(1278) deny mach-lookup com.apple.ls.boxd
    5/19/13 12:43:18.000 PM kernel[0]: Sandbox: sandboxd(1281) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 12:43:57.542 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:44:27.613 PM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x41-10.0.1.7:0!
    5/19/13 12:44:37.169 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 04:f7:e4:01:54:5c@fe80::6f7:e4ff:fe01:545c._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:45:07.326 PM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x42-10.0.1.6:0!
    5/19/13 12:45:14.650 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:45:14.651 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:45:20.065 PM mdworker[1287]: Unable to talk to lsboxd
    5/19/13 12:45:20.000 PM kernel[0]: Sandbox: sandboxd(1290) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 12:45:20.116 PM sandboxd[1290]: ([1287]) mdworker(1287) deny mach-lookup com.apple.ls.boxd
    5/19/13 12:48:24.079 PM mdworker[1304]: Unable to talk to lsboxd
    5/19/13 12:48:24.141 PM sandboxd[1307]: ([1304]) mdworker(1304) deny mach-lookup com.apple.ls.boxd
    5/19/13 12:48:24.000 PM kernel[0]: Sandbox: sandboxd(1307) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 12:49:49.288 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:50:02.494 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:51:18.067 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:51:31.276 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:51:54.930 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:52:10.617 PM apsd[57]: <APSConnectionNotificationQueue: 0x7fb374a3bc00>: outstanding count -1 for com.apple.apsd-queue-port=com.apple.CalendarAgent.push-user=503 darkWakeEnabled-env=production
    5/19/13 12:52:10.618 PM apsd[57]: <APSConnectionNotificationQueue: 0x7fb374a3bc00>: outstanding count -1 for com.apple.apsd-queue-port=com.apple.CalendarAgent.push-user=503 darkWakeEnabled-env=production
    5/19/13 12:52:10.619 PM apsd[57]: <APSConnectionNotificationQueue: 0x7fb374a3bc00>: outstanding count -1 for com.apple.apsd-queue-port=com.apple.CalendarAgent.push-user=503 darkWakeEnabled-env=production
    5/19/13 12:52:24.754 PM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x49-10.0.1.8:0!
    5/19/13 12:52:25.904 PM mdworker[1318]: Unable to talk to lsboxd
    5/19/13 12:52:25.964 PM sandboxd[1321]: ([1318]) mdworker(1318) deny mach-lookup com.apple.ls.boxd
    5/19/13 12:52:26.000 PM kernel[0]: Sandbox: sandboxd(1321) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 12:53:03.789 PM apsd[57]: <APSConnectionNotificationQueue: 0x7fb376c12260>: outstanding count -1 for com.apple.apsd-queue-port=com.apple.syncdefaultsd.push-user=503-env=production
    5/19/13 12:53:03.790 PM apsd[57]: <APSConnectionNotificationQueue: 0x7fb376c12260>: outstanding count -1 for com.apple.apsd-queue-port=com.apple.syncdefaultsd.push-user=503-env=production
    5/19/13 12:53:03.790 PM apsd[57]: <APSConnectionNotificationQueue: 0x7fb376c12260>: outstanding count -1 for com.apple.apsd-queue-port=com.apple.syncdefaultsd.push-user=503-env=production
    5/19/13 12:54:26.709 PM mdworker[1330]: Unable to talk to lsboxd
    5/19/13 12:54:26.764 PM sandboxd[1331]: ([1330]) mdworker(1330) deny mach-lookup com.apple.ls.boxd
    5/19/13 12:54:27.000 PM kernel[0]: Sandbox: sandboxd(1331) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 12:57:42.684 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:58:06.953 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:58:42.587 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:59:12.612 PM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x4c-10.0.1.7:0!
    5/19/13 1:02:30.686 PM mdworker[1352]: Unable to talk to lsboxd
    5/19/13 1:02:30.753 PM sandboxd[1357]: ([1352]) mdworker(1352) deny mach-lookup com.apple.ls.boxd
    5/19/13 1:02:31.000 PM kernel[0]: Sandbox: sandboxd(1357) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 1:03:23.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=1363[GoogleSoftwareUp] clearing CS_VALID
    5/19/13 1:03:32.494 PM mdworker[1365]: Unable to talk to lsboxd
    5/19/13 1:03:32.000 PM kernel[0]: Sandbox: sandboxd(1367) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 1:03:32.545 PM sandboxd[1367]: ([1365]) mdworker(1365) deny mach-lookup com.apple.ls.boxd
    5/19/13 1:03:39.956 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:03:54.397 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 04:f7:e4:01:54:5c@fe80::6f7:e4ff:fe01:545c._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:04:15.597 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:04:15.906 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:04:23.283 PM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x4e-10.0.1.6:0!
    5/19/13 1:04:45.864 PM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x50-10.0.1.7:0!
    5/19/13 1:05:30.403 PM apsd[57]: <APSConnectionNotificationQueue: 0x7fb376c12260>: outstanding count -1 for com.apple.apsd-queue-port=com.apple.syncdefaultsd.push-user=503-env=production
    5/19/13 1:05:30.404 PM apsd[57]: <APSConnectionNotificationQueue: 0x7fb376c12260>: outstanding count -1 for com.apple.apsd-queue-port=com.apple.syncdefaultsd.push-user=503-env=production
    5/19/13 1:05:30.406 PM apsd[57]: <APSConnectionNotificationQueue: 0x7fb376c12260>: outstanding count -1 for com.apple.apsd-queue-port=com.apple.syncdefaultsd.push-user=503-env=production
    5/19/13 1:05:34.290 PM mdworker[1375]: Unable to talk to lsboxd
    5/19/13 1:05:34.358 PM sandboxd[1378]: ([1375]) mdworker(1375) deny mach-lookup com.apple.ls.boxd
    5/19/13 1:05:34.000 PM kernel[0]: Sandbox: sandboxd(1378) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 1:05:59.736 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:06:38.691 PM com.apple.launchd.peruser.503[229]: (0x7fd5cb92a010.anonymous.com.apple.dock.[339]) Unmanaged jobs may not make XPC Events requests.
    5/19/13 1:06:38.691 PM com.apple.dock.extra[339]: Event channel check-in failed: com.apple.usernotificationcenter.matching: 0x1: Operation not permitted
    5/19/13 1:06:38.691 PM com.apple.dock.extra[339]: Bug: 12D78: libxpc.dylib + 35251 [BBE558BD-5E55-35E4-89ED-1AA6B056D05A]: 0x1
    5/19/13 1:06:38.692 PM com.apple.dock.extra[339]: Got bogus event on event stream listener connection. You may have called xpc_set_event_stream_handler() more than once for the same stream: <error: 0x7fff7e878ca0> { count = 1, contents =
              "XPCErrorDescription" => <string: 0x7fff7e878c20> { length = 18, contents = "Connection invalid" }
    5/19/13 1:06:38.811 PM com.apple.SecurityServer[25]: Session 100019 created
    5/19/13 1:06:39.443 PM WindowServer[115]: kCGErrorIllegalArgument: _CGXRemoveWindowFromWindowMovementGroup: Window not in group
    5/19/13 1:06:41.002 PM Messages[1383]: [Warning] Could not find transfer for guid: 978F7947-A674-4580-86B5-B7850F738B6E
    5/19/13 1:06:41.002 PM Messages[1383]: [Warning] Could not find transfer for guid: 0BF9128C-961F-4E40-9D43-7945C852F4FD
    5/19/13 1:06:41.514 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 04:f7:e4:01:54:5c@fe80::6f7:e4ff:fe01:545c._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:06:41.518 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:06:56.469 PM WindowServer[115]: CGXGetConnectionProperty: Invalid connection 80099
    5/19/13 1:06:56.469 PM WindowServer[115]: CGXGetConnectionProperty: Invalid connection 80099
    5/19/13 1:06:56.469 PM WindowServer[115]: CGXGetConnectionProperty: Invalid connection 80099
    5/19/13 1:06:56.469 PM WindowServer[115]: CGXGetConnectionProperty: Invalid connection 80099
    5/19/13 1:06:56.470 PM WindowServer[115]: CGXGetConnectionProperty: Invalid connection 80099
    5/19/13 1:06:56.487 PM WindowServer[115]: CGXGetConnectionProperty: Invalid connection 80099
    5/19/13 1:06:56.487 PM WindowServer[115]: CGXGetConnectionProperty: Invalid connection 80099
    5/19/13 1:06:56.487 PM WindowServer[115]: CGXGetConnectionProperty: Invalid connection 80099
    5/19/13 1:06:56.488 PM WindowServer[115]: CGXGetConnectionProperty: Invalid connection 80099
    5/19/13 1:06:56.488 PM WindowServer[115]: CGXGetConnectionProperty: Invalid connection 80099
    5/19/13 1:06:56.488 PM WindowServer[115]: CGXGetConnectionProperty: Invalid connection 80099
    5/19/13 1:06:56.488 PM WindowServer[115]: CGXGetConnectionProperty: Invalid connection 80099
    5/19/13 1:06:56.488 PM WindowServer[115]: CGXGetConnectionProperty: Invalid connection 80099
    5/19/13 1:06:56.489 PM WindowServer[115]: CGXGetConnectionProperty: Invalid connection 80099
    5/19/13 1:06:56.489 PM WindowServer[115]: CGXGetConnectionProperty: Invalid connection 80099
    5/19/13 1:07:02.303 PM Mail[1394]: Using V2 Layout
    5/19/13 1:07:02.701 PM com.apple.SecurityServer[25]: Killing auth hosts
    5/19/13 1:07:02.701 PM com.apple.SecurityServer[25]: Session 100010 destroyed
    5/19/13 1:07:02.718 PM com.apple.SecurityServer[25]: Session 100020 created
    5/19/13 1:07:05.434 PM librariand[1396]: MMe quota status changed: under quota
    5/19/13 1:07:14.140 PM Mail[1394]: *** -[IADomainCache init]: IA domains cache is out of date.
    5/19/13 1:07:15.807 PM SyncServer[1403]: [0x7fe4d2c0be80] |DataManager|Warning| Client com.apple.Mail sync alert tool path /System/Library/Frameworks/Message.framework/Resources/MailSync does not exist.
    5/19/13 1:08:07.775 PM WindowServer[115]: CGXSetWindowBackgroundBlurRadius: Invalid window 0xffffffff
    5/19/13 1:08:18.267 PM mdworker[1410]: Unable to talk to lsboxd
    5/19/13 1:08:18.319 PM sandboxd[1411]: ([1410]) mdworker(1410) deny mach-lookup com.apple.ls.boxd
    5/19/13 1:08:18.000 PM kernel[0]: Sandbox: sandboxd(1411) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 1:08:35.984 PM com.apple.backupd[1418]: Starting automatic backup
    5/19/13 1:08:35.993 PM com.apple.backupd[1418]: Attempting to mount network destination URL: afp://johnp;[email protected]/Data
    5/19/13 1:08:44.593 PM com.apple.backupd[1418]: Mounted network destination at mount point: /Volumes/Data using URL: afp://johnp;[email protected]/Data
    5/19/13 1:08:44.000 PM kernel[0]: ASP_TCP asp_tcp_usr_control: invalid kernelUseCount 0
    5/19/13 1:08:44.000 PM kernel[0]: AFP_VFS afpfs_mount: /Volumes/Data, pid 1420
    5/19/13 1:08:44.000 PM kernel[0]: AFP_VFS afpfs_mount : succeeded on volume 0xffffff814afc6008 /Volumes/Data (error = 0, retval = 0)
    5/19/13 1:09:04.207 PM mds[34]: (Error) Volume: Root store set to FSOnly with matching create! (loaded:1)
    5/19/13 1:09:04.879 PM com.apple.backupd[1418]: Disk image /Volumes/Data/Big iMac (7).sparsebundle mounted at: /Volumes/Time Machine Backups
    5/19/13 1:09:04.882 PM com.apple.backupd[1418]: Backing up to: /Volumes/Time Machine Backups/Backups.backupdb
    5/19/13 1:09:07.098 PM com.apple.backupd[1418]: Using file event preflight for 27iMac
    5/19/13 1:09:08.416 PM com.apple.backupd[1418]: Will copy (8.7 MB) from 27iMac
    5/19/13 1:09:08.420 PM com.apple.backupd[1418]: Using file event preflight for LaCie 1 TB
    5/19/13 1:09:08.420 PM com.apple.backupd[1418]: Will copy (Zero KB) from LaCie 1 TB
    5/19/13 1:09:08.420 PM com.apple.backupd[1418]: Found 203 files (8.7 MB) needing backup
    5/19/13 1:09:08.430 PM com.apple.backupd[1418]: 2.56 GB required (including padding), 1.53 TB available
    5/19/13 1:10:06.833 PM com.apple.backupd[1418]: Copied 4720 files (17.5 MB) from volume 27iMac.
    5/19/13 1:10:10.102 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 04:f7:e4:01:54:5c@fe80::6f7:e4ff:fe01:545c._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:10:11.056 PM com.apple.backupd[1418]: Copied 4727 files (17.5 MB) from volume LaCie 1 TB.
    5/19/13 1:10:11.062 PM com.apple.backupd[1418]: Using file event preflight for 27iMac
    5/19/13 1:10:11.071 PM com.apple.backupd[1418]: Will copy (2 MB) from 27iMac
    5/19/13 1:10:11.073 PM com.apple.backupd[1418]: Found 46 files (2 MB) needing backup
    5/19/13 1:10:11.074 PM com.apple.backupd[1418]: 2.55 GB required (including padding), 1.53 TB available
    5/19/13 1:10:19.134 PM mdworker[1455]: Unable to talk to lsboxd
    5/19/13 1:10:19.201 PM sandboxd[1460]: ([1455]) mdworker(1455) deny mach-lookup com.apple.ls.boxd
    5/19/13 1:10:19.000 PM kernel[0]: Sandbox: sandboxd(1460) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 1:10:25.521 PM com.apple.backupd[1418]: Copied 827 files (2.2 MB) from volume 27iMac.
    5/19/13 1:10:28.887 PM com.apple.backupd[1418]: Copied 834 files (2.2 MB) from volume LaCie 1 TB.
    5/19/13 1:10:29.458 PM com.apple.backupd[1418]: Created new backup: 2013-05-19-131028
    5/19/13 1:10:30.828 PM com.apple.backupd[1418]: Starting post-backup thinning
    5/19/13 1:10:30.828 PM com.apple.backupd[1418]: No post-back up thinning needed: no expired backups exist
    5/19/13 1:10:31.429 PM com.apple.backupd[1418]: Backup completed successfully.
    5/19/13 1:10:35.389 PM com.apple.backupd[1418]: Ejected Time Machine disk image: /Volumes/Data/Big iMac (7).sparsebundle
    5/19/13 1:10:35.000 PM kernel[0]: AFP_VFS afpfs_unmount: /Volumes/Data, flags 0, pid 1468
    5/19/13 1:10:35.000 PM kernel[0]: AFP_VFS afpfs_unmount : We are the last mnt/sbmnt using volume /Volumes/Data 0xffffff814afc6008
    5/19/13 1:10:35.000 PM kernel[0]: AFP_VFS afpfs_unmount : We are the last volume using socket /Volumes/Data 0xffffff814afc6008
    5/19/13 1:10:35.000 PM kernel[0]: AFP_VFS afpfs_unmount : afpfs_DoReconnect sent signal for unmount to proceed
    5/19/13 1:10:35.962 PM com.apple.backupd[1418]: Ejected Time Machine network volume.
    5/19/13 1:13:28.861 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:15:36.656 PM mdworker[1483]: Unable to talk to lsboxd
    5/19/13 1:15:36.721 PM sandboxd[1488]: ([1483]) mdworker(1483) deny mach-lookup com.apple.ls.boxd
    5/19/13 1:15:36.000 PM kernel[0]: Sandbox: sandboxd(1488) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 1:18:27.823 PM CVMServer[134]: Check-in to the service com.apple.cvmsCompAgent_x86_64 failed. This is likely because you have either unloaded the job or the MachService has the ResetAtClose attribute specified in the launchd.plist. If present, this attribute should be removed.
    5/19/13 1:18:28.349 PM CVMServer[134]: Check-in to the service com.apple.cvmsCompAgent_x86_64 failed. This is likely because you have either unloaded the job or the MachService has the ResetAtClose attribute specified in the launchd.plist. If present, this attribute should be removed.
    5/19/13 1:18:29.916 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:18:38.580 PM Safari[1498]: CGContextClipToRect: invalid context 0x0
    5/19/13 1:19:40.023 PM mdworker[1512]: Unable to talk to lsboxd
    5/19/13 1:19:40.072 PM sandboxd[1514]: ([1512]) mdworker(1512) deny mach-lookup com.apple.ls.boxd
    5/19/13 1:19:40.000 PM kernel[0]: Sandbox: sandboxd(1514) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 1:21:29.938 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 04:f7:e4:01:54:5c@fe80::6f7:e4ff:fe01:545c._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:22:58.722 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 04:f7:e4:01:54:5c@fe80::6f7:e4ff:fe01:545c._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:23:06.655 PM apsd[57]: <APSConnectionNotificationQueue: 0x7fb376c12260>: outstanding count -1 for com.apple.apsd-queue-port=com.apple.syncdefaultsd.push-user=503-env=production
    5/19/13 1:23:06.662 PM apsd[57]: <APSConnectionNotificationQueue: 0x7fb376c12260>: outstanding count -1 for com.apple.apsd-queue-port=com.apple.syncdefaultsd.push-user=503-env=production
    5/19/13 1:23:06.666 PM apsd[57]: <APSConnectionNotificationQueue: 0x7fb376c12260>: outstanding count -1 for com.apple.apsd-queue-port=com.apple.syncdefaultsd.push-user=503-env=production
    5/19/13 1:23:07.626 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:23:28.873 PM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x58-10.0.1.6:0!
    5/19/13 1:23:37.563 PM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x59-10.0.1.7:0!
    5/19/13 1:23:41.878 PM mdworker[1523]: Unable to talk to lsboxd
    5/19/13 1:23:41.000 PM kernel[0]: Sandbox: sandboxd(1526) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 1:23:42.329 PM sandboxd[1526]: ([1523]) mdworker(1523) deny mach-lookup com.apple.ls.boxd
    5/19/13 1:26:23.313 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:26:23.319 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:26:35.364 PM com.apple.SecurityServer[25]: Killing auth hosts
    5/19/13 1:26:35.364 PM com.apple.SecurityServer[25]: Session 100019 destroyed
    5/19/13 1:26:35.390 PM com.apple.SecurityServer[25]: Session 100021 created
    5/19/13 1:29:00.844 PM mdworker[1555]: Unable to talk to lsboxd
    5/19/13 1:29:00.893 PM sandboxd[1556]: ([1555]) mdworker(1555) deny mach-lookup com.apple.ls.boxd
    5/19/13 1:29:01.000 PM kernel[0]: Sandbox: sandboxd(1556) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 1:29:56.823 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 04:f7:e4:01:54:5c@fe80::6f7:e4ff:fe01:545c._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:29:57.123 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:29:57.130 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:30:26.871 PM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x5d-10.0.1.6:0!
    5/19/13 1:30:26.994 PM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x5e-10.0.1.7:0!
    5/19/13 1:31:42.496 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:31:59.700 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:32:12.583 PM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x60-10.0.1.7:0!
    5/19/13 1:35:05.846 PM mdworker[1578]: Unable to talk to lsboxd
    5/19/13 1:35:05.907 PM sandboxd[1581]: ([1578]) mdworker(1578) deny mach-lookup com.apple.ls.boxd
    5/19/13 1:35:06.000 PM kernel[0]: Sandbox: sandboxd(1581) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 1:35:30.442 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:35:30.744 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:35:48.564 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:36:03.308 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:36:09.761 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:36:32.393 PM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x65-10.0.1.7:0!
    5/19/13 1:36:49.695 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:36:54.303 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple

  • Dropping Wireless Connection & Speed Slowing Down

    Hi,
    Up until a week ago I had two BT lines, I will call them line 1 and line 2.  Line 1 (front room) was used purely for phone calls, and line 2 (middle room) had Broadband activated on it. When it came time to renew the yearly line rental I checked and had it confirmed by BT that the available Broadband speed was faster on line 1, so I decided to cancel line 2, and move my Home Hub 4 into room 1 having arranged to activate Broadband on what in theory should be a line that gives a better speed.
    My current problem is two-fold. Firstly I am not yet getting the line speed that I was expecting. I have spoken to the Technical Help Line, and understand that following the activation of Broadband on the line in Room 1 I should wait 10 days for the available speed to stabalise. Currently I am 7 days on from line activation.
    A few days ago I was getting download speeds around 2.70 Mbps, with upload speeds around 0.38 Mbps. The IP profile for the download speed at that time was set at 2.77 Mbps. The IP profile for the upload speed was set at 0.45 Mbps. Over the past week I have done numerous speed checks and found that the speed did vary, as might be expected, but was generally always around these figures. Because of the line check speeds I was given by BT's own staff I was expecting the available speed to get better, not slow down! I was originally advised to expect line speeds of between 3.5 Mbps - 5.5 Mbps.
    Over the last 24 - 36 hours the speed has slowed down, and a few minutes ago these are the figures I observed:
    Download speed achieved during the test was - 1.3 Mbps
     For your connection, the acceptable range of speeds is 0.8 Mbps-2 Mbps.
     IP Profile for your line is - 1.33 Mbps
    Upload speed achieved during the test was - 0.34Mbps
    Additional Information:
    Upstream Rate IP profile on your line is - 0.45 Mbps
    Line speed then is one issue, but there is another.
    My second, presently very frustrating problem is that even though the Hub 4 is consistently powered, and maintains a steady Blue light showing that Broadband is available, my wireless connection that I receive from the Hub keeps dropping. I should add that the distance from the Hub 4 in Room 1 to where I work with my laptop in Room 2 is only about 15 - 20 feet. I used the old Hub 2 until a few weeks ago, and neither my daughter on her laptop, or myself, had any problems with 'dropping' the wireless signal, whichever room we were in, or even if we used our respective laptops elsewhere in the house. I was convinced enough by the publicity 'blurb' to believe that Hub 4 was more reliable, with fewer drop-outs. So far this has not proven to be the case.
    I know that I need to wait a few days more till the 10 days are up, but would really appreciate some kind soul commenting on the above. I have looked at the Logs, but without knowing what segment would be helpful in aiding a diagnosis of my two issues I didn't want to provide unnecessary information. So if any particular element of the Logs would be useful, please let me know.
    Yours in hope,
    Alan
    Solved!
    Go to Solution.

    Hello again,
    With your help I was able to locate the place to change the channel manually, which I did, thanks for that. It only resulted in a marginal improvement, but any improvement is good I guess.
    HH4 has now been showing a steady connection for three + days, so, as requested, here are the noise stats:
    16:14:16, 26 Nov.    ( 76.170000) DSL noise margin: 22.00 dB upstream, 12.20 dB downstream
    16:14:16, 26 Nov.    ( 76.080000) DSL line rate: 448 Kbps upstream, 3104 Kbps downstream
    I have done several speed tests and they all show broadly similar results, namely that my download speed is usually around 2.67, whereas my IP Profile is set at 2.74.
    I don't know whether this is worth mentioning but I only have an old style BT socket on my line, not one that has a test socket inside, so I can't do any of the tests using that facility.
    Although my broadband connection has been stable and active on the HH4, as far as using wireless to connect my laptop in another room I do still get several dropped connections each day.
    Even when I am connected to my HH4 by wireless, and my signal, as now, is only in the four bar bracket, by looking at the other Networks that are active in my street/area I can see, although it is rightly secured, that someone is using a HH3 and the signal on that is powerful enough to register a full five bar (excellent) strength on my laptop. How near or far away from me that user with a HH3 is I do not know, the point is however I can receive a more powerful and consistent signal from their Hub than my own. I must confess to being puzzled by that. What could be the reason?
    Is there any further help or guidance that you can give that might assist in raising my IP profile, in the hope that my speed might increase? Or do you have any further suggestions as to how I might reduce the noise on my line to a more acceptable amount, so that my signal might give me a better wireless connection?
    Thanks again for any advice or help you are able to give.
    Regards,
    Alan

  • Slowed Down to 2Mbps Again

    About a year ago the powerstation down the road was vandalised and blew up, this lead to us getting disconected and reconnected to the powerstation. this also meant that the router kept on being restarted. this lead to the IP profile getting stuck at 2Mbps. when i rang up bt to complain they kept on telling me to try many different solutions as to why my internet had slowed down from 8Mbps.
    After two weeks of them calling me and me calling them they said it was probably my IP profile had got stuck at 2Mbps because of the frequent disconnects; they told me they would contact a service engineer and the problem would be resolved within 24-48 hours.
    This has happened again, except this time we had to keep on disconnecting the router because we were redecorating that room and didnt want to break it.
    After i had waited a week as i have read on the forums that it should return back to normal if you just leave it connected for that long. I rang BT and told them that the problem was the IP profile and it had happened before and that i had been told to call again if this problem ever occurred again. instead of listening to what i was saying the person on the other end of the phone kept on wantinh me to do different speed tests and to turn off all devices. after i had been on the phone jumping through all of the hoops and getting more and more annoyed, i told the man on the end of the phone to listen to me very carefully and request that my IP profile was reset. he put me on hold and then after about 10 minutes came back on the phone and Said that he had talked with their technical team and had put a request in. This was yesterday.
    The reason i am posting this here is to check whether the man on the phone was trying to get rid of me, (it was how quickly he ended the phonecall and the lack of information that he gave me that made me suspicious) or if he had put in a request as there has been no change in my internet speeds today, if anything they are slower
    Solved!
    Go to Solution.

    Download Speed 1.93 Mbps
    Upload Speed 0.38 Mbps
    Ping Latency 33.75
    1. Best Effort Test:  -provides background information.
    Download  Speed
    1.85 Mbps
     Download speedachieved during the test was - 1.85 Mbps
     For your connection, the acceptable range of speeds is 0.4 Mbps-2 Mbps.
     Additional Information:
     Your DSL Connection Rate :8.13 Mbps(DOWN-STREAM), 0.45 Mbps(UP-STREAM)
     IP Profile for your line is - 2 Mbps

  • Why did it slow down my mac

    I just downloaded Mountain Lion and I have noticed a severally impact on my system. Everything takes a long time and has slowed down from the synced iphone, iphoto, pages, and even itunes. I have never had this problem till this new operating system. I have the color wheel to open most things and it thinks a lot. I have 20 gigs of music, 40 of shows, and a few files saved. any similar problems?

    First, back up all data immediately, as your boot drive might be failing.
    There are a few other possible causes of generalized slow performance that you can rule out easily.
    Reset the System Management Controller.
    If you have many image or video files on the Desktop with preview icons, move them to another folder.
    If applicable, uncheck all boxes in the iCloud preference pane.
    Disconnect all non-essential wired peripherals and remove aftermarket expansion cards, if any.
    Check your keychains in Keychain Access for excessively duplicated items.
    Boot into Recovery mode, launch Disk Utility, and run Repair Disk.
    Otherwise, take the steps below when you notice the problem.
    Step 1
    Launch the Activity Monitor 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. Click Utilities, then Activity Monitor in the icon grid.
    Select the CPU tab of the Activity Monitor window.
    Select All Processes from the menu in the toolbar, if not already selected.
    Click the heading of the % CPU column in the process table to sort the entries by CPU usage. You may have to click it twice to get the highest value at the top. What is it, and what is the process? Also post the values for % User, % System, and % Idle at the bottom of the window.
    Select the System Memory tab. What values are shown in the bottom part of the window for Page outs and Swap used?
    Next, select the Disk Activity tab. Post the approximate values shown for Reads in/sec and Writes out/sec (not Reads in and Writes out.)
    Step 2
    If you have more than one user account, you must be logged in as an administrator to carry out this step.
    Launch the Console application in the same way you launched Activity Monitor. Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Select the 50 or so most recent entries in the log. Copy them to the Clipboard (command-C). Paste into a reply to this message (command-V). You're looking for entries at the end of the log, not at the beginning.
    When posting a log extract, be selective. Don't post more than is requested.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some personal information, such as your name, may appear in the log. Anonymize before posting. That should be easy to do if your extract is not too long.

  • Issue with building an array from a cfhttp request result.

    Here is what I am trying to do. Retrieve a bunch of results from a  REST request. Run a query to see if I should be excluding any of the xmltext entries coming back from the rest request. Build an array of the REST xmltext entries except the entries in the cfquery.
    I have it all workign except building the array minus the entries that came back in the cfquery. Here is my code so far.
    <cfquery name="getqueue" datasource="#application.settings.dsn#">
    select * from friends
    where Deactivatedate < #DATEADD('d', 1, CreateODBCDateTime(now()))#
    </cfquery>
    <cfoutput query = "getqueue">
    <cfhttp  blah blah>
    <cfset nodes_parse = XmlParse(CFHTTP.FileContent)>
    <cfset Nodes = xmlSearch(nodes_parse,'friends/friend/date/activedate/')>
    <cfset roleArray = ArrayNew(1)>
    <cfloop from="1" to="#arraylen(Nodes)#" index="i">
       <cfset NodeXML = xmlparse(Nodes[i])>
    <cfset ArrayAppend(roleArray, '[sel_members][]=#NodeXML.activedate.xmlText#&')>
    </cfloop>
    </cfoutput>
    My issue is down in the loop where I do the arrayappend. How would I build an array of values coming back from the cfhttp request but not include any of them if they match up with anything coming back from the getqueue query?

    What about the obvious? Namely,
    <cfif value_from_getqueue IS NOT value_from_cfhttp_request>
    <cfset arrayAppend()>
    </cfif>

  • Browser based InfoPath Forms in SharePoint 2010 performance has slowed down after SharePoint 2010 SP2

    hi All,
    Our Browser based Infopath forms have slowed down drastically after applying SharePoint 2010 SP2. Prior to this, we had SharePoint 2010 SP1 and the timings was around 10 seconds (single user) for the entire infopath form to be displayed which has 10-12
    views and 5 data connections and 15 business rules and around 100 fields.
    But now after applying sharepoint 2010 sp2, the performance has slowed down and it now takes for a single user around 50 seconds.
    Refer to the link below, which we followed by applying the patch as well, but the performance is still the same very slow.
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/0b673324-01c4-49f7-86cb-647aa43fefd6/infopath-browser-forms-extremely-slow-after-service-pack-2-upgrade?forum=sharepointadminprevious
    We have raised a ticket with Microsoft, but there is no concrete resolution as to what component of the infopath has made the form rendering and display slow.
    Can someone point me to the right resource or knowledge base where i can do a kind of debug, which tells me exactly which infopath dlls are the issue or which part of my form is taking more time. I am using AOLPageTest and Fiddler, but they do not give me
    any details where exactly is the bottleneck.
    Any tools that give me the details of the bottleneck.
    Thanks and appreciate your help in this.
    Regards
    Ram
    Thanks Ram

    hi inderjeet,
    The application has gone live and its on production, the same application is on pre-prod and UAT, system testing and integration environments.
    The infopath form used to work very well on all these environments before we installed sharepoint 2010 sp2. but the moment we installed sharepoint 2010 sp2, the infopath forms have slowed down.
    Microsoft has acknowledged that there is an issued with sharepoint 2010 sp2 and infopath form performance, but they are not able to provide an appropriate fix on this.
    We have another environment where there is no sharepoint 2010 sp2 applied only sp1 is applied and the infopath form works very well within fraction of seconds.
    So your point no. 1 and 2 and 3. does not reveal anything. Fiddler does not give any detailed component by component breakup where the time is taking more.
    The form used to work very well before we applied sp2.
    I want to know a tool that gives me exactly component by component grant chart kind of breakup of time taken when the infopath url is requested on the browser.
    Thanks
    ram
    Thanks Ram

  • Slow down in database access

    I have completed a project which automates the procesing of stock monitoring and billing ofacocacola stockist in my home town. The processor need in the machine is P4. I used JDK 1.4 with MS-Access (Office 2000) as backend. I have come across a problem which cannot be detected by me and the service engineers of system also. The problem is stated below.
    (i) When i use the billing module of the project i cannot use the billing screen continuously more than 10 times. I am in need of reloading the software to start again.
    (ii) All the modules get slow down when in use the software more than 45 minutes.
    (iii) When the billing screen get slow an exception is thrown. The name of the exceptio is Event despatch thread queue exception.
    I get this proplem when i use the part of the software which are connected to the database.
    If i use the other parts of the software (non database activities)then there is no problem in using the software.
    I used the same processing for a textile industry's stock monitoring system. There is no problem with the software.
    Is there any timeout value set for the access database's connection or for the swing components.
    Please consider my request and give suggestion as soon as possible.

    Hi,
    I think you try to establish many Connections to the Database, but you don`t close them. This can cause memory problems and the other thing is that your database has a limited number of possible open connections. So there are two ways to solve the problem:
    (1) After using the Database, close the connection immediately in a finally block
    (2) Reuse one (or more) open connections. This is also known as connection Pooling. The advantage of this solution is that the performance of your application will be better because the process of establishing a JDBC Connection has high cost !
    Adrian Ofterdinger

  • Windows 8.1 "explorer.exe" gradually slows down - Observation

    Hi, I posted a question a year ago about Windows 8.1 gradually slows down issue, and it seems still not being solved. I recently found some new clues about this, hope it can be useful. (Please read the original post first
    since it contains basic descriptions of the issue:
    https://social.technet.microsoft.com/Forums/en-US/f9ab40a8-6681-4c66-bdbd-9de7b2fb021f/windows-81-gradually-slows-down-after-hours-speed-returns-normal-if-restart-explorerexe?forum=w8itproperf)
    This issue is found to be somehow related to total Page Faults of explorer.exe since it starts. The majority of page fault is created by desktop background slide show. On my laptop, the slide show is set to randomly switch between 53 jpegs
    (mostly 1920*1080) every 10 seconds. The Page Fault Delta of explorer.exe is usually 2 per second when not doing anything, and tenth to hundreds when there are some actions. But at the instance when the background is switching, it will peak to a value
    between 13,000 and 30,000.
    I don't know if this value is normal or not, but when the total Page Faults reaches about 20,000,000, a slight slow-down can be observed by moving your mouse up and down on the favorite bar items in IE (the right bar shown when pressing Alt+C
    in IE), a slight lag can be observed. The slow down (slightly) of normal windows can be observed when Page Faults reaches about 40,000,000. At that time, the mouse lag on favorite bar items becomes much more obvious. After another few hours, the slow-down
    will become more serious.
    I tried to disable the slide show by only using one background image, the total Page Fault stays low and the slow-down issue does not occur after one day (the Page Fault after one day is also far less than 20,000,000). That's why restarting explorer.exe
    can temporarily fix it. I tried it on 2 other Windows 8.1 computers and get the same results. Maybe there is some memory allocation or fragmentation problem building up? One thing I don't know is that if this is caused by the background slide show itself,
    or if explorer.exe in general will slow down after experimenting enough page faults.

    Polyhedron,
    This main reason of this issue is not the Windows system. A page fault occurs under these situation:
    1. A program requests an address on a page that is not in the current set of memory resident pages. 
    2. The virtual memory system has become unstable because of a shortage of physical memory (RAM).
    3. The virtual memory system has become unstable because of a shortage of free disk space.
    4. The virtual memory area is corrupted by a program.
    5. A program is attempting to access data that is being modified by another program that is running.
    Please refer this blog to determine it's hard faults or soft faults.
    The Basics of Page Faults
    http://blogs.technet.com/b/askperf/archive/2008/06/10/the-basics-of-page-faults.aspx
    In addition, from your description, since the background slide itself is without problem, I suspect the root is your ram. Try to increase the amount of memory or reduce the cache size for test.
    Karen Hu
    TechNet Community Support

  • Service Host causing system Slow down

    I'm having slow down issues while switching between programs or when switching websites. Watching task manager it seems the service host engages and jumps the cpu usage up to 70 to 80% for
    several seconds.
    What report were you requesting to review the possible issues? Would you mind reviewing my report?

    In order to diagnose your problem we need to run Windows performance toolkit the instructions for which can be found in this
    wiki
    If you have any questions feel free to ask
    Please run the trace when you are experiencing the problem
    Wanikiya and Dyami--Team Zigzag

  • Server slows down after a while

    Hi all,
    I've a problem with a linux machine which slows down after running for
    some days. It usually handles about 100 request per second and after a
    while it goes down to about 5 requests per second. I'm running WL6.1Sp1
    on Linux with JDK1.3.1 and "-hotspot -ms512m -mx512m". I'm wondering if
    this is related to some problem in my code or maybe rather is a database
    issue. I took a thread dump, and the server looks idle. Does anyone see
    something unusual in this dump? Does it indicate anything else than a
    nearly totally idle server?
    Thanks for your input!
    Daniel
    Full thread dump:
    "process forker" daemon prio=1 tid=0x82fe460 nid=0x5bf6 waiting on
    monitor [0xb75ff000..0xb75ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.UNIXProcessForker.run(Native Method)
         at java.lang.Thread.run(Thread.java:484)
    "process reaper" daemon prio=1 tid=0x82fdde0 nid=0x5bf5 runnable
    [0xb77ff000..0xb77ff8c0]
         at java.lang.UNIXProcessReaper.run(Native Method)
         at java.lang.Thread.run(Thread.java:484)
    "HighPriority TimeEventGenerator" daemon prio=1 tid=0x8148b98 nid=0x5ad6
    waiting on monitor [0xb79ff000..0xb79ff8c0]
         at java.lang.Object.wait(Native Method)
         at
    weblogic.time.common.internal.TimeTable.snooze(TimeTable.java:279)
         at
    weblogic.time.common.internal.TimeEventGenerator.run(TimeEventGenerator.
    java:138)
         at java.lang.Thread.run(Thread.java:484)
    "ListenThread" prio=1 tid=0x679c3c10 nid=0x5ad5 runnable
    [0xb7bff000..0xb7bff8c0]
         at java.net.PlainSocketImpl.socketAccept(Native Method)
         at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:421)
         at java.net.ServerSocket.implAccept(ServerSocket.java:243)
         at java.net.ServerSocket.accept(ServerSocket.java:222)
         at weblogic.t3.srvr.ListenThread.run(ListenThread.java:255)
    "Thread-2" prio=1 tid=0x83a3b68 nid=0x5ad3 waiting on monitor
    [0xb7dff000..0xb7dff8c0]
         at java.lang.Object.wait(Native Method)
         at java.util.TimerThread.mainLoop(Timer.java:432)
         at java.util.TimerThread.run(Timer.java:385)
    "ExecuteThread: '0' for queue: 'JMS.TimerTreePool'" daemon prio=1
    tid=0x67680b10 nid=0x5ad2 waiting on monitor [0xb7fff000..0xb7fff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '3' for queue: 'JMS.TimerClientPool'" daemon prio=1
    tid=0x676809e8 nid=0x5ad1 waiting on monitor [0xb81ff000..0xb81ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '2' for queue: 'JMS.TimerClientPool'" daemon prio=1
    tid=0x65a8b358 nid=0x5ad0 waiting on monitor [0xb83ff000..0xb83ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '1' for queue: 'JMS.TimerClientPool'" daemon prio=1
    tid=0x65a873b0 nid=0x5acf waiting on monitor [0xb85ff000..0xb85ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '0' for queue: 'JMS.TimerClientPool'" daemon prio=1
    tid=0x65af9d88 nid=0x5ace waiting on monitor [0xb87ff000..0xb87ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '14' for queue: 'JmsDispatcher'" daemon prio=1
    tid=0x6764bfb8 nid=0x5acc waiting on monitor [0xb89ff000..0xb89ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '13' for queue: 'JmsDispatcher'" daemon prio=1
    tid=0x67951208 nid=0x5acb waiting on monitor [0xb8bff000..0xb8bff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '12' for queue: 'JmsDispatcher'" daemon prio=1
    tid=0x67667450 nid=0x5aca waiting on monitor [0xb8dff000..0xb8dff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '11' for queue: 'JmsDispatcher'" daemon prio=1
    tid=0x679819b0 nid=0x5ac9 waiting on monitor [0xb8fff000..0xb8fff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '10' for queue: 'JmsDispatcher'" daemon prio=1
    tid=0x6799ade8 nid=0x5ac8 waiting on monitor [0xb91ff000..0xb91ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '9' for queue: 'JmsDispatcher'" daemon prio=1
    tid=0x6765d0b8 nid=0x5ac7 waiting on monitor [0xb93ff000..0xb93ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '8' for queue: 'JmsDispatcher'" daemon prio=1
    tid=0x67903838 nid=0x5ac6 waiting on monitor [0xb95ff000..0xb95ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '7' for queue: 'JmsDispatcher'" daemon prio=1
    tid=0x676688a8 nid=0x5ac5 waiting on monitor [0xb97ff000..0xb97ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '6' for queue: 'JmsDispatcher'" daemon prio=1
    tid=0x676976e8 nid=0x5ac4 waiting on monitor [0xb99ff000..0xb99ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '5' for queue: 'JmsDispatcher'" daemon prio=1
    tid=0x65ada048 nid=0x5ac3 waiting on monitor [0xb9bff000..0xb9bff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '4' for queue: 'JmsDispatcher'" daemon prio=1
    tid=0x6766e550 nid=0x5ac2 waiting on monitor [0xb9dff000..0xb9dff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '3' for queue: 'JmsDispatcher'" daemon prio=1
    tid=0x67630ea8 nid=0x5ac1 waiting on monitor [0xb9fff000..0xb9fff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '2' for queue: 'JmsDispatcher'" daemon prio=1
    tid=0x65acf508 nid=0x5ac0 waiting on monitor [0xba1ff000..0xba1ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '1' for queue: 'JmsDispatcher'" daemon prio=1
    tid=0x65ada1e8 nid=0x5abf waiting on monitor [0xba3ff000..0xba3ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '0' for queue: 'JmsDispatcher'" daemon prio=1
    tid=0x676ed050 nid=0x5abe waiting on monitor [0xba5ff000..0xba5ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '2' for queue: 'weblogic.transaction.AsyncQueue'" daemon
    prio=1 tid=0x6762af98 nid=0x5abd waiting on monitor
    [0xba7ff000..0xba7ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '1' for queue: 'weblogic.transaction.AsyncQueue'" daemon
    prio=1 tid=0x676a0838 nid=0x5abc waiting on monitor
    [0xba9ff000..0xba9ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '0' for queue: 'weblogic.transaction.AsyncQueue'" daemon
    prio=1 tid=0x6765c0d8 nid=0x5abb waiting on monitor
    [0xbabff000..0xbabff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '9' for queue: '__weblogic_admin_rmi_queue'" daemon
    prio=1 tid=0x65ab6bf8 nid=0x5aba waiting on monitor
    [0xbadff000..0xbadff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '8' for queue: '__weblogic_admin_rmi_queue'" daemon
    prio=1 tid=0x676865f0 nid=0x5ab9 waiting on monitor
    [0xbafff000..0xbafff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '7' for queue: '__weblogic_admin_rmi_queue'" daemon
    prio=1 tid=0x676dfcb0 nid=0x5ab8 waiting on monitor
    [0xbb1ff000..0xbb1ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '6' for queue: '__weblogic_admin_rmi_queue'" daemon
    prio=1 tid=0x676120f0 nid=0x5ab7 waiting on monitor
    [0xbb3ff000..0xbb3ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '5' for queue: '__weblogic_admin_rmi_queue'" daemon
    prio=1 tid=0x67611fb0 nid=0x5ab6 waiting on monitor
    [0xbb5ff000..0xbb5ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '4' for queue: '__weblogic_admin_rmi_queue'" daemon
    prio=1 tid=0x67699720 nid=0x5ab5 waiting on monitor
    [0xbb7ff000..0xbb7ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '3' for queue: '__weblogic_admin_rmi_queue'" daemon
    prio=1 tid=0x67926328 nid=0x5ab4 waiting on monitor
    [0xbb9ff000..0xbb9ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '2' for queue: '__weblogic_admin_rmi_queue'" daemon
    prio=1 tid=0x6767e820 nid=0x5ab3 waiting on monitor
    [0xbbbff000..0xbbbff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '1' for queue: '__weblogic_admin_rmi_queue'" daemon
    prio=1 tid=0x65ab61a0 nid=0x5ab2 waiting on monitor
    [0xbbdff000..0xbbdff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '0' for queue: '__weblogic_admin_rmi_queue'" daemon
    prio=1 tid=0x676cff58 nid=0x5ab1 waiting on monitor
    [0xbbfff000..0xbbfff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '1' for queue: '__weblogic_admin_html_queue'" daemon
    prio=1 tid=0x6765ff60 nid=0x5ab0 waiting on monitor
    [0xbc1ff000..0xbc1ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '0' for queue: '__weblogic_admin_html_queue'" daemon
    prio=1 tid=0x6765f958 nid=0x5aaf waiting on monitor
    [0xbc3ff000..0xbc3ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "TimeEventGenerator" daemon prio=1 tid=0x676f3818 nid=0x5aae waiting on
    monitor [0xbc5ff000..0xbc5ff8c0]
         at java.lang.Object.wait(Native Method)
         at
    weblogic.time.common.internal.TimeTable.snooze(TimeTable.java:279)
         at
    weblogic.time.common.internal.TimeEventGenerator.run(TimeEventGenerator.
    java:138)
         at java.lang.Thread.run(Thread.java:484)
    "TimeEventGenerator" daemon prio=1 tid=0x676ffae8 nid=0x5aad waiting on
    monitor [0xbc7ff000..0xbc7ff8c0]
         at java.lang.Object.wait(Native Method)
         at
    weblogic.time.common.internal.TimeTable.snooze(TimeTable.java:279)
         at
    weblogic.time.common.internal.TimeEventGenerator.run(TimeEventGenerator.
    java:138)
         at java.lang.Thread.run(Thread.java:484)
    "SpinnerRandomSource" daemon prio=1 tid=0x67646dd8 nid=0x5aac waiting on
    monitor [0xbc9ff000..0xbc9ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.security.SpinnerRandomBitsSource.run(SpinnerRandomBitsSource.ja
    va:57)
         at java.lang.Thread.run(Thread.java:484)
    "ExecuteThread: '14' for queue: 'default'" daemon prio=1 tid=0x6767ff00
    nid=0x5aab runnable [0xbcbff000..0xbcbff8c0]
         at java.net.SocketInputStream.socketRead(Native Method)
         at java.net.SocketInputStream.read(SocketInputStream.java:86)
         at
    weblogic.socket.JavaSocketMuxer.processSockets2(JavaSocketMuxer.java:273
         at
    weblogic.socket.JavaSocketMuxer.processSockets(JavaSocketMuxer.java:225)
         at
    weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:24)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    "ExecuteThread: '13' for queue: 'default'" daemon prio=1 tid=0x67929c90
    nid=0x5aaa waiting on monitor [0xbcdff000..0xbcdff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '12' for queue: 'default'" daemon prio=1 tid=0x65aa0b58
    nid=0x5aa9 waiting on monitor [0xbcfff000..0xbcfff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '11' for queue: 'default'" daemon prio=1 tid=0x65a9ed80
    nid=0x5aa8 waiting on monitor [0xbd1ff000..0xbd1ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '10' for queue: 'default'" daemon prio=1 tid=0x679036d0
    nid=0x5aa7 runnable [0xbd3ff000..0xbd3ff8c0]
         at java.net.SocketInputStream.socketRead(Native Method)
         at java.net.SocketInputStream.read(SocketInputStream.java:86)
         at
    weblogic.socket.JavaSocketMuxer.processSockets2(JavaSocketMuxer.java:273
         at
    weblogic.socket.JavaSocketMuxer.processSockets(JavaSocketMuxer.java:225)
         at
    weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:24)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    "ExecuteThread: '9' for queue: 'default'" daemon prio=1 tid=0x6767fdc0
    nid=0x5aa6 waiting on monitor [0xbd5ff000..0xbd5ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '8' for queue: 'default'" daemon prio=1 tid=0x676680f8
    nid=0x5aa5 waiting on monitor [0xbd7ff000..0xbd7ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '7' for queue: 'default'" daemon prio=1 tid=0x676123e0
    nid=0x5aa4 waiting on monitor [0xbd9ff000..0xbd9ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '6' for queue: 'default'" daemon prio=1 tid=0x6766f658
    nid=0x5aa3 waiting on monitor [0xbdbff000..0xbdbff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '5' for queue: 'default'" daemon prio=1 tid=0x67647858
    nid=0x5aa2 waiting on monitor [0xbddff000..0xbddff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '4' for queue: 'default'" daemon prio=1 tid=0x67665970
    nid=0x5aa1 waiting on monitor [0xbdfff000..0xbdfff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '3' for queue: 'default'" daemon prio=1 tid=0x676426d8
    nid=0x5aa0 runnable [0xbe1ff000..0xbe1ff8c0]
         at java.net.SocketInputStream.socketRead(Native Method)
         at java.net.SocketInputStream.read(SocketInputStream.java:86)
         at
    weblogic.socket.JavaSocketMuxer.processSockets2(JavaSocketMuxer.java:273
         at
    weblogic.socket.JavaSocketMuxer.processSockets(JavaSocketMuxer.java:225)
         at
    weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:24)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    "ExecuteThread: '2' for queue: 'default'" daemon prio=1 tid=0x65afac38
    nid=0x5a9f runnable [0xbe3ff000..0xbe3ff8c0]
         at java.net.SocketInputStream.socketRead(Native Method)
         at java.net.SocketInputStream.read(SocketInputStream.java:86)
         at
    weblogic.socket.JavaSocketMuxer.processSockets2(JavaSocketMuxer.java:273
         at
    weblogic.socket.JavaSocketMuxer.processSockets(JavaSocketMuxer.java:225)
         at
    weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:24)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    "ExecuteThread: '1' for queue: 'default'" daemon prio=1 tid=0x65aa1088
    nid=0x5a9e waiting on monitor [0xbe5ff000..0xbe5ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '0' for queue: 'default'" daemon prio=1 tid=0x6765ef78
    nid=0x5a9d waiting on monitor [0xbe7ff000..0xbe7ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "Thread-0" daemon prio=1 tid=0x6764ced0 nid=0x5a9c waiting on monitor
    [0xbe9ff000..0xbe9ff8c0]
         at java.lang.Thread.sleep(Native Method)
         at
    weblogic.transaction.internal.TransactionManagerImpl$1.run(TransactionMa
    nagerImpl.java:1546)
         at java.lang.Thread.run(Thread.java:484)
    "Signal Dispatcher" daemon prio=1 tid=0x808d4b0 nid=0x5a9a waiting on
    monitor [0..0]
    "Finalizer" daemon prio=1 tid=0x8086ca0 nid=0x5a97 waiting on monitor
    [0xbf3ff000..0xbf3ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:108)
         at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:123)
         at
    java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:162)
    "Reference Handler" daemon prio=1 tid=0x80851f8 nid=0x5a96 waiting on
    monitor [0xbf5ff000..0xbf5ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    java.lang.ref.Reference$ReferenceHandler.run(Reference.java:110)
    "main" prio=1 tid=0x804e750 nid=0x5a7c waiting on monitor
    [0xbfffd000..0xbfffd220]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at weblogic.t3.srvr.T3Srvr.waitForDeath(T3Srvr.java:596)
         at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:207)
         at weblogic.Server.main(Server.java:35)
    "VM Thread" prio=1 tid=0x80821a8 nid=0x5a95 runnable
    "VM Periodic Task Thread" prio=1 tid=0x808c220 nid=0x5a98 waiting on
    monitor
    "Suspend Checker Thread" prio=1 tid=0x808cb68 nid=0x5a99 runnable

    There are several threads like the one below. I would think that they are the
    problem. But I don't know what they are doing - doesn't look like any application
    code.
    Mike
    "ExecuteThread: '2' for queue: 'default'" daemon prio=1 tid=0x65afac38 nid=0x5a9f
    runnable [0xbe3ff000..0xbe3ff8c0] at java.net.SocketInputStream.socketRead(Native
    Method) at java.net.SocketInputStream.read(SocketInputStream.java:86) at weblogic.socket.JavaSocketMuxer.processSockets2(JavaSocketMuxer.java:273
    ) at weblogic.socket.JavaSocketMuxer.processSockets(JavaSocketMuxer.java:225)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:24) at
    weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139) at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    ============================================================
    Daniel Hoppe <[email protected]> wrote:
    Hi all,
    I've a problem with a linux machine which slows down after running for
    some days. It usually handles about 100 request per second and after
    a
    while it goes down to about 5 requests per second. I'm running WL6.1Sp1
    on Linux with JDK1.3.1 and "-hotspot -ms512m -mx512m". I'm wondering
    if
    this is related to some problem in my code or maybe rather is a database
    issue. I took a thread dump, and the server looks idle. Does anyone see
    something unusual in this dump? Does it indicate anything else than a
    nearly totally idle server?
    Thanks for your input!
    Daniel
    Full thread dump:
    "process forker" daemon prio=1 tid=0x82fe460 nid=0x5bf6 waiting on
    monitor [0xb75ff000..0xb75ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.UNIXProcessForker.run(Native Method)
         at java.lang.Thread.run(Thread.java:484)
    "process reaper" daemon prio=1 tid=0x82fdde0 nid=0x5bf5 runnable
    [0xb77ff000..0xb77ff8c0]
         at java.lang.UNIXProcessReaper.run(Native Method)
         at java.lang.Thread.run(Thread.java:484)
    "HighPriority TimeEventGenerator" daemon prio=1 tid=0x8148b98 nid=0x5ad6
    waiting on monitor [0xb79ff000..0xb79ff8c0]
         at java.lang.Object.wait(Native Method)
         at
    weblogic.time.common.internal.TimeTable.snooze(TimeTable.java:279)
         at
    weblogic.time.common.internal.TimeEventGenerator.run(TimeEventGenerator.
    java:138)
         at java.lang.Thread.run(Thread.java:484)
    "ListenThread" prio=1 tid=0x679c3c10 nid=0x5ad5 runnable
    [0xb7bff000..0xb7bff8c0]
         at java.net.PlainSocketImpl.socketAccept(Native Method)
         at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:421)
         at java.net.ServerSocket.implAccept(ServerSocket.java:243)
         at java.net.ServerSocket.accept(ServerSocket.java:222)
         at weblogic.t3.srvr.ListenThread.run(ListenThread.java:255)
    "Thread-2" prio=1 tid=0x83a3b68 nid=0x5ad3 waiting on monitor
    [0xb7dff000..0xb7dff8c0]
         at java.lang.Object.wait(Native Method)
         at java.util.TimerThread.mainLoop(Timer.java:432)
         at java.util.TimerThread.run(Timer.java:385)
    "ExecuteThread: '0' for queue: 'JMS.TimerTreePool'" daemon prio=1
    tid=0x67680b10 nid=0x5ad2 waiting on monitor [0xb7fff000..0xb7fff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '3' for queue: 'JMS.TimerClientPool'" daemon prio=1
    tid=0x676809e8 nid=0x5ad1 waiting on monitor [0xb81ff000..0xb81ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '2' for queue: 'JMS.TimerClientPool'" daemon prio=1
    tid=0x65a8b358 nid=0x5ad0 waiting on monitor [0xb83ff000..0xb83ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '1' for queue: 'JMS.TimerClientPool'" daemon prio=1
    tid=0x65a873b0 nid=0x5acf waiting on monitor [0xb85ff000..0xb85ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '0' for queue: 'JMS.TimerClientPool'" daemon prio=1
    tid=0x65af9d88 nid=0x5ace waiting on monitor [0xb87ff000..0xb87ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '14' for queue: 'JmsDispatcher'" daemon prio=1
    tid=0x6764bfb8 nid=0x5acc waiting on monitor [0xb89ff000..0xb89ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '13' for queue: 'JmsDispatcher'" daemon prio=1
    tid=0x67951208 nid=0x5acb waiting on monitor [0xb8bff000..0xb8bff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '12' for queue: 'JmsDispatcher'" daemon prio=1
    tid=0x67667450 nid=0x5aca waiting on monitor [0xb8dff000..0xb8dff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '11' for queue: 'JmsDispatcher'" daemon prio=1
    tid=0x679819b0 nid=0x5ac9 waiting on monitor [0xb8fff000..0xb8fff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '10' for queue: 'JmsDispatcher'" daemon prio=1
    tid=0x6799ade8 nid=0x5ac8 waiting on monitor [0xb91ff000..0xb91ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '9' for queue: 'JmsDispatcher'" daemon prio=1
    tid=0x6765d0b8 nid=0x5ac7 waiting on monitor [0xb93ff000..0xb93ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '8' for queue: 'JmsDispatcher'" daemon prio=1
    tid=0x67903838 nid=0x5ac6 waiting on monitor [0xb95ff000..0xb95ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '7' for queue: 'JmsDispatcher'" daemon prio=1
    tid=0x676688a8 nid=0x5ac5 waiting on monitor [0xb97ff000..0xb97ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '6' for queue: 'JmsDispatcher'" daemon prio=1
    tid=0x676976e8 nid=0x5ac4 waiting on monitor [0xb99ff000..0xb99ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '5' for queue: 'JmsDispatcher'" daemon prio=1
    tid=0x65ada048 nid=0x5ac3 waiting on monitor [0xb9bff000..0xb9bff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '4' for queue: 'JmsDispatcher'" daemon prio=1
    tid=0x6766e550 nid=0x5ac2 waiting on monitor [0xb9dff000..0xb9dff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '3' for queue: 'JmsDispatcher'" daemon prio=1
    tid=0x67630ea8 nid=0x5ac1 waiting on monitor [0xb9fff000..0xb9fff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '2' for queue: 'JmsDispatcher'" daemon prio=1
    tid=0x65acf508 nid=0x5ac0 waiting on monitor [0xba1ff000..0xba1ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '1' for queue: 'JmsDispatcher'" daemon prio=1
    tid=0x65ada1e8 nid=0x5abf waiting on monitor [0xba3ff000..0xba3ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '0' for queue: 'JmsDispatcher'" daemon prio=1
    tid=0x676ed050 nid=0x5abe waiting on monitor [0xba5ff000..0xba5ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '2' for queue: 'weblogic.transaction.AsyncQueue'" daemon
    prio=1 tid=0x6762af98 nid=0x5abd waiting on monitor
    [0xba7ff000..0xba7ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '1' for queue: 'weblogic.transaction.AsyncQueue'" daemon
    prio=1 tid=0x676a0838 nid=0x5abc waiting on monitor
    [0xba9ff000..0xba9ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '0' for queue: 'weblogic.transaction.AsyncQueue'" daemon
    prio=1 tid=0x6765c0d8 nid=0x5abb waiting on monitor
    [0xbabff000..0xbabff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '9' for queue: '__weblogic_admin_rmi_queue'" daemon
    prio=1 tid=0x65ab6bf8 nid=0x5aba waiting on monitor
    [0xbadff000..0xbadff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '8' for queue: '__weblogic_admin_rmi_queue'" daemon
    prio=1 tid=0x676865f0 nid=0x5ab9 waiting on monitor
    [0xbafff000..0xbafff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '7' for queue: '__weblogic_admin_rmi_queue'" daemon
    prio=1 tid=0x676dfcb0 nid=0x5ab8 waiting on monitor
    [0xbb1ff000..0xbb1ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '6' for queue: '__weblogic_admin_rmi_queue'" daemon
    prio=1 tid=0x676120f0 nid=0x5ab7 waiting on monitor
    [0xbb3ff000..0xbb3ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '5' for queue: '__weblogic_admin_rmi_queue'" daemon
    prio=1 tid=0x67611fb0 nid=0x5ab6 waiting on monitor
    [0xbb5ff000..0xbb5ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '4' for queue: '__weblogic_admin_rmi_queue'" daemon
    prio=1 tid=0x67699720 nid=0x5ab5 waiting on monitor
    [0xbb7ff000..0xbb7ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '3' for queue: '__weblogic_admin_rmi_queue'" daemon
    prio=1 tid=0x67926328 nid=0x5ab4 waiting on monitor
    [0xbb9ff000..0xbb9ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '2' for queue: '__weblogic_admin_rmi_queue'" daemon
    prio=1 tid=0x6767e820 nid=0x5ab3 waiting on monitor
    [0xbbbff000..0xbbbff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '1' for queue: '__weblogic_admin_rmi_queue'" daemon
    prio=1 tid=0x65ab61a0 nid=0x5ab2 waiting on monitor
    [0xbbdff000..0xbbdff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '0' for queue: '__weblogic_admin_rmi_queue'" daemon
    prio=1 tid=0x676cff58 nid=0x5ab1 waiting on monitor
    [0xbbfff000..0xbbfff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '1' for queue: '__weblogic_admin_html_queue'" daemon
    prio=1 tid=0x6765ff60 nid=0x5ab0 waiting on monitor
    [0xbc1ff000..0xbc1ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '0' for queue: '__weblogic_admin_html_queue'" daemon
    prio=1 tid=0x6765f958 nid=0x5aaf waiting on monitor
    [0xbc3ff000..0xbc3ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "TimeEventGenerator" daemon prio=1 tid=0x676f3818 nid=0x5aae waiting
    on
    monitor [0xbc5ff000..0xbc5ff8c0]
         at java.lang.Object.wait(Native Method)
         at
    weblogic.time.common.internal.TimeTable.snooze(TimeTable.java:279)
         at
    weblogic.time.common.internal.TimeEventGenerator.run(TimeEventGenerator.
    java:138)
         at java.lang.Thread.run(Thread.java:484)
    "TimeEventGenerator" daemon prio=1 tid=0x676ffae8 nid=0x5aad waiting
    on
    monitor [0xbc7ff000..0xbc7ff8c0]
         at java.lang.Object.wait(Native Method)
         at
    weblogic.time.common.internal.TimeTable.snooze(TimeTable.java:279)
         at
    weblogic.time.common.internal.TimeEventGenerator.run(TimeEventGenerator.
    java:138)
         at java.lang.Thread.run(Thread.java:484)
    "SpinnerRandomSource" daemon prio=1 tid=0x67646dd8 nid=0x5aac waiting
    on
    monitor [0xbc9ff000..0xbc9ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.security.SpinnerRandomBitsSource.run(SpinnerRandomBitsSource.ja
    va:57)
         at java.lang.Thread.run(Thread.java:484)
    "ExecuteThread: '14' for queue: 'default'" daemon prio=1 tid=0x6767ff00
    nid=0x5aab runnable [0xbcbff000..0xbcbff8c0]
         at java.net.SocketInputStream.socketRead(Native Method)
         at java.net.SocketInputStream.read(SocketInputStream.java:86)
         at
    weblogic.socket.JavaSocketMuxer.processSockets2(JavaSocketMuxer.java:273
         at
    weblogic.socket.JavaSocketMuxer.processSockets(JavaSocketMuxer.java:225)
         at
    weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:24)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    "ExecuteThread: '13' for queue: 'default'" daemon prio=1 tid=0x67929c90
    nid=0x5aaa waiting on monitor [0xbcdff000..0xbcdff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '12' for queue: 'default'" daemon prio=1 tid=0x65aa0b58
    nid=0x5aa9 waiting on monitor [0xbcfff000..0xbcfff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '11' for queue: 'default'" daemon prio=1 tid=0x65a9ed80
    nid=0x5aa8 waiting on monitor [0xbd1ff000..0xbd1ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '10' for queue: 'default'" daemon prio=1 tid=0x679036d0
    nid=0x5aa7 runnable [0xbd3ff000..0xbd3ff8c0]
         at java.net.SocketInputStream.socketRead(Native Method)
         at java.net.SocketInputStream.read(SocketInputStream.java:86)
         at
    weblogic.socket.JavaSocketMuxer.processSockets2(JavaSocketMuxer.java:273
         at
    weblogic.socket.JavaSocketMuxer.processSockets(JavaSocketMuxer.java:225)
         at
    weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:24)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    "ExecuteThread: '9' for queue: 'default'" daemon prio=1 tid=0x6767fdc0
    nid=0x5aa6 waiting on monitor [0xbd5ff000..0xbd5ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '8' for queue: 'default'" daemon prio=1 tid=0x676680f8
    nid=0x5aa5 waiting on monitor [0xbd7ff000..0xbd7ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '7' for queue: 'default'" daemon prio=1 tid=0x676123e0
    nid=0x5aa4 waiting on monitor [0xbd9ff000..0xbd9ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '6' for queue: 'default'" daemon prio=1 tid=0x6766f658
    nid=0x5aa3 waiting on monitor [0xbdbff000..0xbdbff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '5' for queue: 'default'" daemon prio=1 tid=0x67647858
    nid=0x5aa2 waiting on monitor [0xbddff000..0xbddff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '4' for queue: 'default'" daemon prio=1 tid=0x67665970
    nid=0x5aa1 waiting on monitor [0xbdfff000..0xbdfff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '3' for queue: 'default'" daemon prio=1 tid=0x676426d8
    nid=0x5aa0 runnable [0xbe1ff000..0xbe1ff8c0]
         at java.net.SocketInputStream.socketRead(Native Method)
         at java.net.SocketInputStream.read(SocketInputStream.java:86)
         at
    weblogic.socket.JavaSocketMuxer.processSockets2(JavaSocketMuxer.java:273
         at
    weblogic.socket.JavaSocketMuxer.processSockets(JavaSocketMuxer.java:225)
         at
    weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:24)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    "ExecuteThread: '2' for queue: 'default'" daemon prio=1 tid=0x65afac38
    nid=0x5a9f runnable [0xbe3ff000..0xbe3ff8c0]
         at java.net.SocketInputStream.socketRead(Native Method)
         at java.net.SocketInputStream.read(SocketInputStream.java:86)
         at
    weblogic.socket.JavaSocketMuxer.processSockets2(JavaSocketMuxer.java:273
         at
    weblogic.socket.JavaSocketMuxer.processSockets(JavaSocketMuxer.java:225)
         at
    weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:24)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    "ExecuteThread: '1' for queue: 'default'" daemon prio=1 tid=0x65aa1088
    nid=0x5a9e waiting on monitor [0xbe5ff000..0xbe5ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '0' for queue: 'default'" daemon prio=1 tid=0x6765ef78
    nid=0x5a9d waiting on monitor [0xbe7ff000..0xbe7ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "Thread-0" daemon prio=1 tid=0x6764ced0 nid=0x5a9c waiting on monitor
    [0xbe9ff000..0xbe9ff8c0]
         at java.lang.Thread.sleep(Native Method)
         at
    weblogic.transaction.internal.TransactionManagerImpl$1.run(TransactionMa
    nagerImpl.java:1546)
         at java.lang.Thread.run(Thread.java:484)
    "Signal Dispatcher" daemon prio=1 tid=0x808d4b0 nid=0x5a9a waiting on
    monitor [0..0]
    "Finalizer" daemon prio=1 tid=0x8086ca0 nid=0x5a97 waiting on monitor
    [0xbf3ff000..0xbf3ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:108)
         at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:123)
         at
    java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:162)
    "Reference Handler" daemon prio=1 tid=0x80851f8 nid=0x5a96 waiting on
    monitor [0xbf5ff000..0xbf5ff8c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at
    java.lang.ref.Reference$ReferenceHandler.run(Reference.java:110)
    "main" prio=1 tid=0x804e750 nid=0x5a7c waiting on monitor
    [0xbfffd000..0xbfffd220]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at weblogic.t3.srvr.T3Srvr.waitForDeath(T3Srvr.java:596)
         at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:207)
         at weblogic.Server.main(Server.java:35)
    "VM Thread" prio=1 tid=0x80821a8 nid=0x5a95 runnable
    "VM Periodic Task Thread" prio=1 tid=0x808c220 nid=0x5a98 waiting on
    monitor
    "Suspend Checker Thread" prio=1 tid=0x808cb68 nid=0x5a99 runnable

  • Open ports slow down my internet connection. How to close them? What to do?

    My MacBook Pro has massive problems with internet connectivity. At times the connection is blazingly fast, at times unbelievably slow.
    I've spoken to my internet provider who was able to inform me that my computer opens up 500-700 ports which is probably what's slowing down the network connectivity. When I'm online with the MacBook Pro, the web gets unstable – also for other connected devices like iPad etc.
    The web supporter asked me to run an anti-virus scan which I did – with no results. The problem persists. When my MacBook Pro is not online, there are approximately 15 ports open, when I log on the web that number increases to between 500 and 700.
    Is this normal?
    Can anyone tell me how to solve this issue?
    How do I figure out which application opens these ports? (and how to close them?)
    I tried logging into another user account on the computer and the problem seemed to disappear, indicating that it is caused by something run only on my user account.
    Hope someone can help me..

    Open ports don't slow down your computer. The tech support person you spoke to doesn't know what they are talking about.
    Basically, when you are using a web browser, opening a page means that the browser needs to open a connection for each element in the page (e.g., it needs to grab each picture, CSS, and JavaScript file that the page requires). This could be a couple of dozen, or it could be hundreds (and there's no telling what Flash content on the page will do). The browser tries to mitigate things a bit using a cache (you might check to make sure the cache is turned on, but this is the default setting). However, this is how all browsers work and how the whole system is designed to operate. You cannot "close" any ports, and they don't linger open, they remain open only as long as data is being transferred. This is expected and appropriate behavior.
    The most likely culprit is that you are receiving poor DNS service from your service provider. Every time the computer sees an address like 'http://www.google.com', it needs to send out a request to figure out what numerical address goes with the human-readable name. If the DNS service your system is assigned to use doesn't respond lightning-quick, your experience is going to be very sluggish.
    You might want to add an external DNS service to your list of DNS providers. Go to System Preferences > Network, select the network you are using on the left (Ethernet or AirPort), and click the 'Advanced' button. Click on the 'DNS' tab, then press the '+' button under the left panel. I would add the OpenDNS.com DNS servers. Add the following DNS addresses:
    {quote}
    208.67.222.222
    208.67.220.220
    {quote}
    Click the 'OK' button. And then the 'Apply' button to save the changes.
    That will probably fix the problem. If it doesn't the next most likely issue is either network congestion (e.g., your ISP's network is just too busy; a very common thing for small ISPs and cable Internet service), or the remote site that you are trying to contact is simply not performing so well.

Maybe you are looking for

  • No calendar synchronization between iMac and iPhone4

    Since a few days the synchronazation of calender is excluded. No idea what to do.

  • Picasa Web Album Playback Error

    I used QuickTime Pro to edit .mov files from my camera. No problems with playback in QuickTime or in Picasa resident on my machine, but when I upload the edited files to Picasa Web Album, the audio track is out of sync with the video or worse. In fac

  • Why Can't I watch any types of videos on apps except for Instagram?

    I Can't watch videos on any apps! For example: Youtube, facebook. But I can watch videos on Instagram? It happends the same thing on My iPad 3.

  • SCOM 2012 Reporting - Feature List

    Is there a simple documentation listing out what SCOM 2012 R2 Reporting is capable of. People at my company wants to know what this "Reporting" does. Instead of giving them a 1,000 page documentation on SCOM, if there was a simple document listing ou

  • Flash player no longer working after update

    I recently updated flash player, only to find it will no longer work. Have tried uninstalling restarting,repairing disk permissions and re-installing to no avail any ideas?