IllegalStateException - tomcat 4

2001-02-15 Thread Andrey Akselrod
take a look at the stack - it calls "include" and after that it calls "forward" where it fails - any idea why? Thank you, Andrey Akselrod, Senior Software Architect [EMAIL PROTECTED] == RUNTIME TECHNOLOGIES

RE: IllegalStateException - tomcat 4

2001-02-15 Thread Andrey Akselrod
But this is the trick: I am not using forward - i use include! (see my last email for the code sample). -a -Original Message- From: Michael Wentzel [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 15, 2001 11:11 AM To: '[EMAIL PROTECTED]' Subject: RE: IllegalStateException -

RE: IllegalStateException - tomcat 4

2001-02-15 Thread Andrey Akselrod
patcher rd = request.getRequestDispatcher("/include-test"); rd.include(request, response); % or, even simpler: jsp:include page="/include-test" flush="true"/ Craig McClanahan PS: Removing the flush() in your calling page would also make the original example work c

RE: IllegalStateException - tomcat 4

2001-02-15 Thread Andrey Akselrod
- thank you. -a -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 15, 2001 4:40 PM To: [EMAIL PROTECTED] Subject: Re: IllegalStateException - tomcat 4 Andrey Akselrod wrote: Craig, Michael, thank you for your help! Craig, your