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 194136

Summary: [70cat] IllegalStateException: Too many org.netbeans.modules.j2ee.jetty.JetLogger$LoggerRunnable (5) in shared RequestProcessor; create your own
Product: serverplugins Reporter: marcotts
Component: JettyAssignee: issues@serverplugins <issues>
Status: NEW ---    
Severity: normal CC: buzzword, gilbertoca, marcotts, mps77, zfleisch
Priority: P3    
Version: 6.x   
Hardware: All   
OS: All   
Issue Type: DEFECT Exception Reporter: 167882
Attachments: stacktrace
stacktrace
stacktrace

Description marcotts 2011-01-08 12:27:55 UTC
Build: NetBeans IDE Dev (Build 201101040001)
VM: Java HotSpot(TM) 64-Bit Server VM, 19.0-b09, Java(TM) SE Runtime Environment, 1.6.0_23-b05
OS: Windows 7

User Comments:
marcotts: run a web app with jetty

GUEST: Configured Jetty Hightide 7.0, started it, got an exception on startup.  So stopped Jetty and removed the server.  Then configured a new Jetty 6.1.23 instance instead.  Started Jetty from the Server plugin and got this error.

buzzword: Tried to start Jetty webserver.




Stacktrace: 
java.lang.IllegalStateException: Too many org.netbeans.modules.j2ee.jetty.JetLogger$LoggerRunnable (5) in shared RequestProcessor; create your own
   at org.openide.util.RequestProcessor.post(RequestProcessor.java:425)
   at org.netbeans.modules.j2ee.jetty.JetLogger.readInputStreams(JetLogger.java:126)
   at org.netbeans.modules.j2ee.jetty.ide.JetStartRunnable.run(JetStartRunnable.java:99)
   at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1424)
   at org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:1968)
Comment 1 marcotts 2011-01-08 12:27:59 UTC
Created attachment 104806 [details]
stacktrace
Comment 2 marcotts 2011-01-08 12:31:57 UTC
Created attachment 104808 [details]
stacktrace

starting jetty server
Comment 3 zfleisch 2011-02-28 17:31:09 UTC
Created attachment 106565 [details]
stacktrace

Starting webapp using maven and jetty
Comment 4 zfleisch 2011-03-01 17:24:05 UTC
There is 2 version of Jetty. The older is provided by codehouse.org.
I tested version 6.1.26 version and it works with Netbeans!!!

The newer version 7.3 is provided by eclipse.org and they renamed classes!

For example:

org.mortbay.jetty.webapp.WebAppContext was renamed to
org.eclipse.jetty.webapp.WebAppContext.

I think this is the root cause of the problems.