This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 218761 - (Regression) org.openide.util.RequestProcessor$SlowItem exception occurred when debugging a simple IMlet
Summary: (Regression) org.openide.util.RequestProcessor$SlowItem exception occurred wh...
Status: RESOLVED FIXED
Alias: None
Product: debugger
Classification: Unclassified
Component: Java (show other bugs)
Version: 7.2
Hardware: PC Windows 7
: P2 normal (vote)
Assignee: Martin Entlicher
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-09-21 12:42 UTC by ll149151
Modified: 2012-09-23 01:00 UTC (History)
1 user (show)

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments
exception log (771.98 KB, application/octet-stream)
2012-09-21 12:42 UTC, ll149151
Details
exception screen shot (84.44 KB, image/png)
2012-09-21 12:49 UTC, ll149151
Details

Note You need to log in before you can comment on or make changes to this bug.
Description ll149151 2012-09-21 12:42:16 UTC
Created attachment 124705 [details]
exception log

(Using netbeans-trunk-nightly-201209190001-javase-windows.exe + javame-embedded-3-2-rr-win32-bin-b29-20_sep_2012.zip
with JDK 1.7.0_07 on Win7 SP1)

When debugging a very simple IMlet(source codes below), after hitting CTRL+F5, org.openide.util.RequestProcessor$SlowItem exception occurred.
Please refer to attached NetBeans log(messages.log)

Sample IMlet source codes:

package jmeelogging;
import com.oracle.util.logging.*;
import javax.microedition.midlet.*;
public class IMlet extends MIDlet {
    Logger logger = Logger.getGlobal();
    public void startApp() {
        logger.addHandler(new MyHandler());
        logger.setLevel(Level.INFO);
        logger.log(Level.INFO, "A message of Level.INFO.");      // Will be printed out in console.
        logger.log(Level.FINEST, "A message of Level.FINEST.");  // Will NOT be printed out.
        logger.log(Level.SEVERE, "A message of Level.SEVERE.");  // will be printed out in console.
        destroyApp(true);
        notifyDestroyed();
    }
    
    public void pauseApp() {
    }
    public void destroyApp(boolean unconditional) {
    }
    class MyHandler extends Handler {
        public void publish(LogRecord record) {
            System.out.println(record.getMessage());
       	}
       	public void flush() {
      	}
       	public void close() {
       	}
    }
}
Comment 1 ll149151 2012-09-21 12:49:09 UTC
Created attachment 124708 [details]
exception screen shot
Comment 2 alexander.burdukov 2012-09-21 12:52:12 UTC
Please, ignore "exception log" attached:

it does not show the original problem, it just shows an unsuccessful attempt to enable ME platform, that was deleted on file system and exception in this log is the expected behavior.

Instead, please see stack trace on attached screenshot.
Comment 3 ll149151 2012-09-21 13:07:33 UTC
Everything was fine with netbeans-trunk-nightly-201209110001-javase-windows.exe, so this might be a regression
Comment 4 ll149151 2012-09-23 01:00:22 UTC
Closed.
This problem disappeared in netbeans-trunk-nightly-201209220001-javase-windows.exe