vote up 0 vote down star

I have a web application that's currently running under Tomcat 5.5.25. I'm attempting to port it to Jetty 6 to take advantage of the rapid refresh time for jsp and UI changes especially.

Since my JSP files are JSP 2.0 compliant, I'm running jetty under maven using the configuration suggested on the maven jetty plugin web site. This config loads apache's jasper JSP compiler version 5.5.15. (Also available in the maven respository is 5.5.23, but it has the same result.)

Under jetty, my home page, which is configured using tiles, blows up with IllegalStateException in ServletResponseWrapperInclude.getOutputStream(). Obviously under Tomcat it doesn't do this.

I'm struggling to understand what it is about our tiles and includes that would cause jasper to complain in jetty and not in Tomcat.

flag

78% accept rate
Is there any additional error message with the stacktrace? – toolkit Mar 3 at 21:47
toolkit++ please include full stacktrace – cherouvim Mar 4 at 17:10

1 Answer

vote up 0 vote down

This may not be much of an answer, but we discovered that this error happens when Tiles includes an empty tile.

By going through our master tile JSPs and removing references to empty tiles, we make this problem go away.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.