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 - [70cat] IllegalStateException: Too many org.netbeans.modules.j2ee.jetty.JetLogger$LoggerRunnable (5) in shared RequestProcessor; create your own
Summary: [70cat] IllegalStateException: Too many org.netbeans.modules.j2ee.jetty.JetLo...
Status: NEW
Alias: None
Product: serverplugins
Classification: Unclassified
Component: Jetty (show other bugs)
Version: 6.x
Hardware: All All
: P3 normal with 1 vote (vote)
Assignee: issues@serverplugins
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-01-08 12:27 UTC by marcotts
Modified: 2011-09-13 13:48 UTC (History)
5 users (show)

See Also:
Issue Type: DEFECT
Exception Reporter: 167882


Attachments
stacktrace (552 bytes, text/plain)
2011-01-08 12:27 UTC, marcotts
Details
stacktrace (553 bytes, text/plain)
2011-01-08 12:31 UTC, marcotts
Details
stacktrace (552 bytes, text/plain)
2011-02-28 17:31 UTC, zfleisch
Details

Note You need to log in before you can comment on or make changes to this bug.
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.