Slow mouseDragged callbacks in java 1.6.0_10, works fast in prior releases?

I have this program that draws a selection rectangle by xor-ing a rectangle on the screen following the mouse cursor when clicked. In jre's before 1.6.0_10, this runs fast, but in 1.6.0_10 it runs like dog. I've used this code with JRE's from 1.5 to 1.6.0_07 and it was just fine. And if I switch back in eclipse, it is fast again. Here is a striped down version of the code that illustrates the problem. Any ideas, or is this just a performance issue with 1.6.0_10?
import java.awt.Color;
import java.awt.Component;
import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.Point;
import java.awt.Rectangle;
import java.awt.event.KeyEvent;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import java.awt.event.MouseMotionListener;
import java.awt.event.KeyListener;
import javax.swing.JFrame;
import javax.swing.JPanel;
// This class is used to track the mouse and to
// draw a rectangle that follows the pointer.
// In Java 1.6.0_07 (and before) this is very fast, but in 1.6.0_10
// this is very slow.....
public class TestMotion implements MouseMotionListener, MouseListener, KeyListener {
     protected Component parent;
     protected Rectangle startRect;
     protected Point     startMovePt = null;
     protected Point     previousPt = null;
     protected int       width;
     protected int       height;
     protected int       minWidth = 0;
     protected int       minHeight = 0;
     protected boolean   paintedFlg = false;
     public static void main(String [] args) {
          JFrame frame = new JFrame("Test Window");
          JPanel panel = new JPanel();
          panel.setLayout(null);
          new ClickWatcher(panel);
          frame.setContentPane(panel);
          frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
          frame.setSize(new Dimension(800,600));
          frame.setVisible(true);
     private static class ClickWatcher implements MouseListener {
          private JPanel ourPanel;
          private ClickWatcher(JPanel panel) {
               ourPanel = panel;
               panel.addMouseListener(this);
          public void mouseClicked(MouseEvent e) {
          public void mouseEntered(MouseEvent e) {
          public void mouseExited(MouseEvent e) {
          public void mousePressed(MouseEvent e) {
               new TestMotion(ourPanel,e.getX(),e.getY());
          public void mouseReleased(MouseEvent e) {
     public TestMotion(Component control,
                         int x, int y) {
          this.parent = control;
          startRect = new Rectangle(x,y,0,0);
          this.minWidth = 0;
          this.minHeight = 0;
          parent.addMouseListener(this);
          parent.addMouseMotionListener(this);
          parent.addKeyListener(this);
          parent.requestFocus();
     protected void draw(Graphics g,int x,int y,int cx, int cy) {
          g.drawRect(x,y,cx,cy);
     public void mouseDragged(MouseEvent e) {
          int x = e.getX();
          int y = e.getY();
          System.out.println("Mouse Dragged to ("+x+","+y+")");
          Graphics g = parent.getGraphics();
          g.setColor(Color.black);
         g.setXORMode(Color.white);
         if (previousPt != null) {
              if (paintedFlg == false)
                   draw(g,previousPt.x,previousPt.y,width,height);
              paintedFlg = false;
         } else {
              previousPt = startRect.getLocation();
         int newX = previousPt.x;
         int newY = previousPt.y;
         int newHeight = height;
         int newWidth = width;
          if (x < startRect.x) {
               newX = x;
               newWidth = startRect.x - x;
          } else {
               newX = startRect.x;
               newWidth = x - startRect.x;
          if (y < startRect.y) {
               newY = y;
               newHeight = startRect.y - y;
          } else {
               newY = startRect.y;
               newHeight = y - startRect.y;
          if (newWidth < minWidth) {
              newWidth = minWidth;
         if (newHeight < minHeight) {
              newHeight = minHeight;
         Dimension maxSize = parent.getSize();
         if ((newX+newWidth) >= maxSize.width) {
              newWidth = maxSize.width - newX - 1;
         if ((newY+newHeight) >= maxSize.height) {
              newHeight = maxSize.height - newY - 1;
         if (newX < 0) {
              newWidth += newX;
              newX = 0;
         if (newY < 0) {
              newHeight += newY;
              newY = 0;
         previousPt = new Point(newX,newY);
         width = newWidth;
         height = newHeight;
         draw(g,previousPt.x,previousPt.y,
                width,height);
         g.dispose();
     public void mouseMoved(MouseEvent e) {
     public void mouseClicked(MouseEvent e) {
     public void mouseEntered(MouseEvent e) {
     public void mouseExited(MouseEvent e) {
     public void mousePressed(MouseEvent e) {
     public void mouseReleased(MouseEvent e) {
          cleanup1();
         cleanup2();
          e.consume();
     public void keyPressed(KeyEvent e) {
     public void keyReleased(KeyEvent e) {
     public void keyTyped(KeyEvent e) {
          if (e.getKeyChar() == KeyEvent.VK_ESCAPE) {
               cancel();
     private void cleanup1() {
          Graphics g = parent.getGraphics();
          g.setColor(Color.black);
         g.setXORMode(Color.white);
         if (previousPt != null) {
              draw(g,previousPt.x,previousPt.y,width,height);
         g.dispose();
     private void cleanup2() {
         previousPt = null;
          parent.removeMouseListener(this);
          parent.removeMouseMotionListener(this);
          parent.removeKeyListener(this);
     public void cancel() {
         cleanup1();
         cleanup2();
     // We need to know when paint is called so we don't
     // try and clear our old xor rectangle.
     public void paint() {
          paintedFlg = true;
}

Thank you! That solved the problem.No it doesn't, because to make your application work properly on all computers D3D would have to be disabled whenever your application is used. I would look for a way to do what you want without using XOR mode.

Similar Messages

  • My new ipod is extremely slow, but i have full strength wifi. Works fast at others homes.

    My new ipod touch 4g is extremly slow in my house, but i have full strength wifi. Works fast at others homes. When i try to connect to the internet it gives me a server error. All other ipods and laptops work fine in the home. Does anybody else have this issue?

    Have you tried powering off and then back on your router?
    You can try:
    - Reseting the iPod. Nothing will be lost
    Reset iPod touch:  Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    -Resetting network settings: Settings>General>Reset>Reset Network settings.

  • Error With SCORM Content W Latest Version of Sun Java (1.6.0_10)

    We're getting an error with users running the more recent version of Sun Java 1.6.0_10, but not with previous versions. This happens for all our SCORM content.
    The Java logs are showing a lot of data, but the main symptoms seem to be:
    network: CrossDomainXML: connection to host <our LMS server address> denied
    LMS Error: 304 - Security exception
    and
    Error stack trace:
    oracle.apps.ota.lms.LMSException: java.security.AccessControlException: access denied (java.net.SocketPermission <our LMS server address> connect,resolve)
    and
    Returned: "false"
    *** LMSGetLastError() [Thu Oct 09 10:56:35 EDT 2008]
    Returned: "304"
    *** LMSGetErrorString("304") [Thu Oct 09 10:56:35 EDT 2008]
    Returned: "Security exception"
    Our crossdomain.xml fille is configured correctly, and also previous versions of JRE are not having the problem (the Java logs look clean).
    Does anyone have any thoughts?
    Thanks.

    Hi All
    Got a similar issue with the tracking / bookmarking of sessions - when on sun Java update 7 all is well however when update 10 or 11 is installed then SCROM session start on page 1 not the page you were on, also as expected they do not get marked as complete.
    Two things happen
    1) A small window is left for - [http://riti04.cornwall.nhs.uk:7780/ilearn/en/learner/jsp/relogin.jsp] - URL
    2) We get an Error on page - [http://riti04.cornwall.nhs.uk:7780/ilearn/en/learner/jsp/lms.jsp] - URL
    Looked for the Plugin section as per a pervious within the Java Control panel - but I'm not seeing it.
    We use iLearn 5.0 and I am begining to think we need a patch but unsure which.
    Thanks
    Stephen

  • I need java 1.5.0_10 to work or i can't use firefox,java is not in blocklist, now what?

    I need this java to use for work related programs, i had it, it auto updated, i uninstalled and installed the version that i need. It (java) does not appear in the blocklist to enable.

    ty for your reply, unfortunately i have no control over the version of java used. so essentially, i need to find an older version of firefox that will use java 5 or firefox becomes a filebox for google docs.

  • Java Gridbag Layout Not Working

    Hi,
    I have a java sound applet that works, with buttons and icons and combo boxes. I have just added a label and I want the label to appear beneath the buttons and combo boxes, so I decided that Gribag is the best way of achieving this. However, I have set all the co-ordinates to the right places, and suddenly, everything is in the center in one line. Here is the code:
    import javax.swing.*;
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    public class SoundApplet extends JApplet
                             implements ActionListener,
                                        ItemListener {
        AppletSoundList soundList;
        String auFile = "spacemusic.au";
        String aiffFile = "flute+hrn+mrmba.aif";
        String midiFile = "trippygaia1.mid";
        String wavFile = "monkwebstune.wav";
        String chosenFile;
        AudioClip onceClip, loopClip;
        JComboBox formats;
        JButton playButton, loopButton, stopButton;
        boolean looping = false;
        public void init() {
            String [] fileTypes = {auFile,
                                   aiffFile,
                                   midiFile,       
                                   wavFile,};
            Container contentArea = getContentPane();
            contentArea.setBackground(Color.black);
            GridBagLayout flowManager = new GridBagLayout();
            GridBagConstraints pos = new GridBagConstraints();
            contentArea.setLayout (flowManager);
            formats = new JComboBox(fileTypes);
            formats.setSelectedIndex(0);
            chosenFile = (String)formats.getSelectedItem();
            formats.addItemListener(this);
            formats.setBackground(Color.blue);
            formats.setForeground(Color.white);
            pos.gridx = 1; pos.gridy = 1;
            contentArea.add(formats, pos);
            Image playImage = getImage( getCodeBase () , "play.gif" );
            ImageIcon playIcon = new ImageIcon( playImage );
            playButton = new JButton("Play", playIcon);
            playButton.addActionListener(this);
            playButton.setBackground(Color.green);
            playButton.setForeground(Color.black);
            pos.gridx = 1; pos.gridy = 1;
            contentArea.add(playButton, pos);
            Image loopImage = getImage( getCodeBase () , "loop.gif" );
            ImageIcon loopIcon = new ImageIcon( loopImage );
            loopButton = new JButton("Loop", loopIcon);
            loopButton.addActionListener(this);
            loopButton.setBackground(Color.yellow);
            loopButton.setForeground(Color.black);
            pos.gridx = 2; pos.gridy = 1;
            contentArea.add(loopButton, pos);
            Image stopImage = getImage( getCodeBase () , "stop.gif" );
            ImageIcon stopIcon = new ImageIcon( stopImage );
            stopButton = new JButton("Stop", stopIcon);
            stopButton.addActionListener(this);
            stopButton.setEnabled(false);
            stopButton.setBackground(Color.red);
            stopButton.setForeground(Color.black);
            pos.gridx = 3; pos.gridy = 1;
            contentArea.add(stopButton, pos);
            JLabel Occult = new JLabel ("Occult");
            pos.gridx = 2; pos.gridy = 3;
            contentArea.add(Occult, pos);
            setContentPane(contentArea);
            JPanel controlPanel = new JPanel();
            controlPanel.add(formats);
            controlPanel.add(playButton);
            controlPanel.add(loopButton);
            controlPanel.add(stopButton);
            controlPanel.add(Occult);
            getContentPane().add(controlPanel);
            controlPanel.setBackground(Color.black);
            setContentPane(contentArea);
            startLoadingSounds();  
        public void itemStateChanged(ItemEvent e) {
            chosenFile = (String)formats.getSelectedItem();
            soundList.startLoading(chosenFile);
        void startLoadingSounds() {
            //Start asynchronous sound loading.
            soundList = new AppletSoundList(this, getCodeBase());
            soundList.startLoading(auFile);
            soundList.startLoading(aiffFile);
            soundList.startLoading(midiFile);
            soundList.startLoading(wavFile);
        public void stop() {
            onceClip.stop();        //Cut short the one-time sound.
            if (looping) {
                loopClip.stop();    //Stop the sound loop.
        public void start() {
            if (looping) {
                loopClip.loop();    //Restart the sound loop.
        public void actionPerformed(ActionEvent event) {
            //PLAY BUTTON
            Object source = event.getSource();
            if (source == playButton) {
                //Try to get the AudioClip.
                onceClip = soundList.getClip(chosenFile);
                onceClip.play();     //Play it once.
                stopButton.setEnabled(true);
                showStatus("Playing sound " + chosenFile + ".");
                if (onceClip == null) {
                    showStatus("Sound " + chosenFile + " not loaded yet.");
                return;
            //START LOOP BUTTON
            if (source == loopButton) {
                loopClip = soundList.getClip(chosenFile);
                looping = true;
                loopClip.loop();     //Start the sound loop.
                loopButton.setEnabled(false); //Disable loop button.
                stopButton.setEnabled(true);
                showStatus("Playing sound " + chosenFile + " continuously.");
                if (loopClip == null) {
                    showStatus("Sound " + chosenFile + " not loaded yet.");
                return;
            //STOP LOOP BUTTON
            if (source == stopButton) {
                if (looping) {
                    looping = false;
                    loopClip.stop();    //Stop the sound loop.
                    loopButton.setEnabled(true); //Enable start button.
                else if (onceClip != null) {
                    onceClip.stop();
                stopButton.setEnabled(false);
                showStatus("Stopped playing " + chosenFile + ".");
                return;
    }How can I get everything to follow the co-ordinates I specified?
    Thanks in advance.

    try setting a weightx or weighty with a non-zero number between 0 and 1.
    constraint.weightx = 0.5;

  • Java script is not working in custom tabular form

    hai all,
    i have changed my built in tabular form to custom tabular form.my java script is coding working fine in built in tabular form . But in my custom tabular form java script is not working ,since it is created as standard report(Display As).
    pls help me.
    with thanks and regards
    sivakumar.G

    Is the appostrophe function test(pthis) *'* present in your javascript code...
    If not can you post the same in apex.oracle.com and give the credential so that I can the why its not wroking
    Regards,
    Shijesh

  • Java mapping in ccBPM works in PI 7.0 but fails in PI 7.1

    Hi guys,
    at the moment we are upgrading form SAP PI 7.0 to SAP PI 7.11.
    In a scenario for processing of incoming orders we use an ccBPM.
    In this ccBPM there is an mapping where the original xml document of the order are combined with some
    additional information form an web service (multi mapping 2 => 1)
    The result of this mapping is processed further to create an sales order in the backend.
    The multi mapping an java mapping is used.
    Now we are testing the scenario with PI 7.11 and it fails at this mapping step.
    in the workflow log following error occurs.
    An exception with the type CX_ST_MATCH_ELEMENT occ urred, but was neither handled locally, nor de
    Message no. W8899
    I tested the same message on out SAP PI 7.0 system and the whole ccBPM works well.
    When I extract the 2 messages from workflow log and paste them into the test tab of the operation mapping of Enterprise Service Builder of SAP PI 7.11, surrounding by the envelope used by multi mappings
    <ns0:Messages xmlns:ns0="http://sap.com/xi/XI/SplitAndMerge">
       <ns0:Message1>
                   XML MESSAGE 1
       </ns0:Message1>
       <ns0:Message2>
                   XML MESSAGE 2  
       </ns0:Message2>
    </ns0:Messages>
    the mapping works without error, but at runtime it fails, throwing the error mentioned above.
    What could be the reason for this error?
    Does the multi mapping change in PI 7.11 at runtime?
    Could it be a problem parsing the multi message?
    Any help appreciated.
    Kind regards
    Jochen

    Hi Raja,
    thanks for your suggest.
    I know this issue, the java class files are compiled using jdk 1.5.
    We made some more tests.
    e.g. created an dummy ccBPM with two mappings, one two spilt the incoming message in two messages (graphical message mapping) and one to merge this two messages to one message again (java mapping)
    the mapping works at design time on test tab, but fails with the same error at rumtime.
    Also we tested one single operation mapping with this two mappings (split via graphical mapping and merge via java mapping)
    This works also at design time but fails at runtime with a similar error shown in smq2
    The error message is Error ST_MATCH_FAIL occured. P1=element-start P2=M
    we tried to add the whole incoming message to the trace by
    getTrace().addWarning()
    but an trace object is never created in for this step in the workflow log.
    it seem whether you can not add trace messages using the command or that the error occures before this command will be used.
    Kind regards
    Jochen

  • Java Plugin won't work in Netscape 7.1

    I'm using Windows XP Home with Netscape 7.1, and the Java plugin won't work.
    Java Plug-in 1.4.2_05 for Netscape Navigator (DLL Helper) is listed 7 times in Help>About:Plugins;
    The Java Plugin works in Internet Explorer (I use the Test Java Virtual Machine to determine this). With Netscape, I just get the "Click here to get the plugin" window, and believe me, I've clicked here many times, and gone through the installation process, and it still doesn't work. I've uninstalled Java, rebooted, and installed it with the browsers closed, and it still doesn't work. Everything else in Netscape seems to be working properly.
    Under Edit>Preferences>Advanced in Netscape I have "Enable Java" checked.
    I posted this problem in the Windows-BBS Netscape and Mozilla forum, http://www.windowsbbs.com/showthread.php?t=33994, and tried everything suggested there, but it still didn't work.
    Anybody have any suggestions?

    I was facing a similar problem. I think the problem is with different versions of JRE. For example, I was trying to associate with Netscape the JRE version of 1.4.2_01 without any success. But on associating jdk version 1.4.2_05, it started working fine.
    Regards,
    Harish

  • Java plug-in not working in multi-server instance

    I am having problems getting the Sun Java plug-in to work
    when attempting to use the Browse Server button within the CF
    Administrator for directory browsing features such as the Code
    Analyzer, Verity Collections,etc., in a multi-server instance
    setup. The plug-in works fine within the first instance. For all
    the other instances (2 through n), the Java plug-in doesn't do
    anything except show an image of a sun with the words Java Sun
    Microsystems with the rays of the sun going around and round.
    We are using CFMX 7.0.1 with the Sun Java plug-in 1.5.0_06.
    Anyone else experience this problem before?

    First, you need to get off of Java 1.5 and back to 1.4.2. 1.5
    isn't supported yet and breaks stuff.
    Secondly, you need to make sure RDS is enabled on all of your
    instances.

  • Java command still not working - please help

    i have installed jdk1.6.0_05. The javac command works fine but the java command does not work at all. even when i try java HelloWorld i receive this exception message
    Exception in thread "main" java.lang.NoClassDefFoundError: HelloWorld
    Caused by: java.lang.ClassNotFoundException: HelloWorld
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    please help (you to SUN)!!

    bart@kerberos:~$ javac -help
    Usage: javac <options> <source files>
    where possible options include:
      -g                         Generate all debugging info
      -g:none                    Generate no debugging info
      -g:{lines,vars,source}     Generate only some debugging info
      -nowarn                    Generate no warnings
      -verbose                   Output messages about what the compiler is doing
      -deprecation               Output source locations where deprecated APIs are used
      -classpath <path>          Specify where to find user class files and annotation processors
      -cp <path>                 Specify where to find user class files and annotation processors
      -sourcepath <path>         Specify where to find input source files
      -bootclasspath <path>      Override location of bootstrap class files
      -extdirs <dirs>            Override location of installed extensions
      -endorseddirs <dirs>       Override location of endorsed standards path
      -proc:{none,only}          Control whether annotation processing and/or compilation is done.
      -processor <class1>[,<class2>,<class3>...]Names of the annotation processors to run; bypasses default discovery process
      -processorpath <path>      Specify where to find annotation processors
      -d <directory>             Specify where to place generated class files
      -s <directory>             Specify where to place generated source files
      -implicit:{none,class}     Specify whether or not to generate class files for implicitly referenced files
      -encoding <encoding>       Specify character encoding used by source files
      -source <release>          Provide source compatibility with specified release
      -target <release>          Generate class files for specific VM version
      -version                   Version information
      -help                      Print a synopsis of standard options
      -Akey[=value]              Options to pass to annotation processors
      -X                         Print a synopsis of nonstandard options
      -J<flag>                   Pass <flag> directly to the runtime systemSee the bold part.
    More information: [http://java.sun.com/docs/books/tutorial/java/package/managingfiles.html]

  • Java Script doesn't work on Firefox 8?

    I have noticed that (some) Java Script does not work on Firefox 8.0. Is there a correction for this?

    Yep, go back to what works, appears to be the only real solution. But then you'd hardly be able to use Firefox as nothing is going to get fixed there only get broken.
    What does not work is
    # move, and resize of main window not allowed
    # that include wiping out a lot of keyword shortcuts that do that
    # various additional collateral damage
    The solutions (work arounds) that I can best offer are clumsy but can be found in
    * http://kb.mozillazine.org/Resizing_oversize_window#JavaScript_no_longer_allowed_to_resize_windows

  • Open URL in default Browser java.awt.Desktop was working...

    I downloaded Net Beans 6.5 with JavaFX 1 and now java.awt.Desktop isn't even an option for the imports, is there an alternative method to open URLs from my application?

    No, you aren't wrong.
    It's, and I mean this with all due respect, idiotic.
    I found some code on the net that does the same thing:
    http://www.centerkey.com/java/browser/
    Just one class, very simple.
    But I really would like java.awt.Desktop to work, I want the system tray integration stuff.
    Questions about getting Java 1.6 compatibility (the reason why the import doesn't work) go unanswered. It seems there is some hard coded -target 1.5 in some part of the javafx compiler. I can't figure out how to change it.

  • It seems that Java is not fully working in some pages

    Because of a crash, I had to completely uninstall Firefox 3.5.3 and I installed Firefox 3.6.3. After that, some Java features are not working any more. Here I attached an example, where the "plus" buttons do nothing, but when opening the page with IE there is no problem to expand the "plus". I have many extensions installed, I have also tried to disable them (even running Firefox sercure mode), as well as reinstall the last Java version, but nothing yet (Java seems to be correctly installed, since other features work ok, and official Java web page test works ok as well).
    == URL of affected sites ==
    http://http://www.uptamadrid.com/Portal/Organizacion/Sedes/Oficinas.aspx

    Thank you very much for your explanation about Java and Javascript! Very interesting, I didn't know! :-)
    Regarding your question... absolutely :-) it did work before. I have another example, but it is from a bank account and it is not public. It also worked before, but not any more. This is the code of the button (I don't know if this helps):
    javascript:sacarParametros();frmExtracto.Accion.value='AvanzaRetrocede';frmExtracto.Seleccion.value='SIGUIENTE';Movimientos_Posteriores();
    Thank you very much for your help!!

  • Java -jar -myApp.jar works but ....

    Hi there,
    I have a problem : using ant, I have exported my application into an executable jar file.
    When in the console, I type "java -jar myApp.jar" . Everything works well.
    But if, I do double click on the jar file, nothing happens. In fact, I can see a new Instance of javaw.exe in the "task manager" but nothing happens.
    It's kind of weird ...
    Has anybody an idea about that ??
    thanks in advance
    sylvain_2020

    I am having a similar problem.
    java -jar foo.jar works great, but double clicking seems to hang the app at a certain point.
    Unable to figure out what's going on, I've been putting some "JOptionPane.showMessageDialog()" calls to see how far it's getting. It appears to be hanging up when it tries to instantiate one of my classes that extends JPanel. I have a dialog appear right before calling the constructor (and I see that one), but I don't see the dialog that's in the constructor as the first executed line (so that it must hang up somewhere before that). I've also removed all constructors from the attribute declarations. That made me think it had something to do with the constructor of JPanel, over which I have no control.
    However, I can instantiate JPanel no problem.
    What the heck is going on???

  • [SOLVED] java plugin suddenly stopped working

    hello,
    Java applets used to work without any hassle, but suddenly something happened i guess, that made it show blank windows where the applets are supposed to be shown.
    I'm using Firefox Shiretoko 3.5.2 and packages installed are: jdk jre
    about:plugins
    Java(TM) Plug-in 1.6.0_16
        File name: libnpjp2.so
        The next generation Java plug-in for Mozilla browsers.
    MIME Type     Description     Suffixes     Enabled
    application/x-java-vm     Java™ Plug-in         Yes
    application/x-java-applet     Java™ Plug-in Applet         Yes
    application/x-java-applet;version=1.1     Java™ Plug-in         Yes
    application/x-java-applet;version=1.1.1     Java™ Plug-in         Yes
    application/x-java-applet;version=1.1.2     Java™ Plug-in         Yes
    application/x-java-applet;version=1.1.3     Java™ Plug-in         Yes
    application/x-java-applet;version=1.2     Java™ Plug-in         Yes
    application/x-java-applet;version=1.2.1     Java™ Plug-in         Yes
    application/x-java-applet;version=1.2.2     Java™ Plug-in         Yes
    application/x-java-applet;version=1.3     Java™ Plug-in         Yes
    application/x-java-applet;version=1.3.1     Java™ Plug-in         Yes
    application/x-java-applet;version=1.4     Java™ Plug-in         Yes
    application/x-java-applet;version=1.4.1     Java™ Plug-in         Yes
    application/x-java-applet;version=1.4.2     Java™ Plug-in         Yes
    application/x-java-applet;version=1.5     Java™ Plug-in         Yes
    application/x-java-applet;version=1.6     Java™ Plug-in         Yes
    application/x-java-applet;jpi-version=1.6.0_16     Java™ Plug-in         Yes
    application/x-java-bean     Java™ Plug-in JavaBeans         Yes
    application/x-java-bean;version=1.1     Java™ Plug-in         Yes
    application/x-java-bean;version=1.1.1     Java™ Plug-in         Yes
    application/x-java-bean;version=1.1.2     Java™ Plug-in         Yes
    application/x-java-bean;version=1.1.3     Java™ Plug-in         Yes
    application/x-java-bean;version=1.2     Java™ Plug-in         Yes
    application/x-java-bean;version=1.2.1     Java™ Plug-in         Yes
    application/x-java-bean;version=1.2.2     Java™ Plug-in         Yes
    application/x-java-bean;version=1.3     Java™ Plug-in         Yes
    application/x-java-bean;version=1.3.1     Java™ Plug-in         Yes
    application/x-java-bean;version=1.4     Java™ Plug-in         Yes
    application/x-java-bean;version=1.4.1     Java™ Plug-in         Yes
    application/x-java-bean;version=1.4.2     Java™ Plug-in         Yes
    application/x-java-bean;version=1.5     Java™ Plug-in         Yes
    application/x-java-bean;version=1.6     Java™ Plug-in         Yes
    application/x-java-bean;jpi-version=1.6.0_16     Java™ Plug-in         Yes
    I tried removing+reinstalling both of them, also removing .mozilla folder.
    Also tried linking the .so plugin file to .mozilla folder. but no luck ;(
    any other ideas?
    thank you!
    Last edited by 00l0 (2009-08-25 14:22:56)

    thank you both!
    @thisoldman:
    I tried your advices but no luck ;( Preferences are correctly set
    Ranguvar wrote:OP, do normal Java apps still work?
    Now i have realized that's not so. I tested some JAR little applications and weird errors appear, this is the output:
    # A fatal error has been detected by the Java Runtime Environment:
    #  SIGSEGV (0xb) at pc=0x00007f9596e22578, pid=3092, tid=140280444864784
    # JRE version: 6.0_16-b01
    # Java VM: Java HotSpot(TM) 64-Bit Server VM (14.2-b01 mixed mode linux-amd64 )
    # Problematic frame:
    # C  [libc.so.6+0x30578]  catgets+0x18
    # An error report file with more information is saved as:
    # /media/data/descarregues/programming/jogl/nehejoglports/hs_err_pid3092.log
    # If you would like to submit a bug report, please visit:
    #   http://java.sun.com/webapps/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    Aborted
    and the log file,
    cat hs_err_pid3092.log :
    http://pastebin.com/m204f2b77
    looks serious :S
    thanks!

Maybe you are looking for

  • Hp 6525 all-in-one doesn't install correctly

    Hello and hope you can help me. I tried looking for the answer to my problme in previous forum posts but couldn't find anything useful for me.  I bought the printer one month ago, I installed it without any problems (wireless) but at one moment, I co

  • Sto plant to plant

    hi all i have created sto with reference to outbound delivery ie me21n-vl10gvlo2n with pgi -vfo1 proforma invoiceexcise invoice. while doing migo system throwing  a message does not contain any selectable items when we checked in mmbe material transf

  • Sales organization structure changes in COPA

    Hi All, My client like to change Sales organization structure like Distribution channel,division,sales office,sales group etc. and profit centers in sales orders. from 01/01/2011 we like to post all open sales order's settlments to new sales organiza

  • Firefox won't start at all

    I had an issue with a device being installed on my laptop, as recommended I ran something on the command prompt program, after that firefox has not started, I thought easy solution was uninstal/ re install, no luck, please help, I single, double, tri

  • AP/AR in Stock Transport Order

    Is AP/AR Document will be Generated in stock transport Order with in a company code ? Is it Possible to have the Billing/Invoice with in a Comapny code. If Possible how to do? If it is not Possible ,why? Suitable answers will get Reward Points. Pleas