Are you using sendRedirect on your web page?
Look at DreamScreen_jsp.java, Line 564 in your Tomcat working directory.

The following is repeated from a previous response.

I believe the java.lang.IllegalStateException occurs when the responseis
committed. sendRedirect requires changing the HTTP headers
(Location:perhaps). You cannot write HTML to the web page and then issue
aredirect unless the HTML is buffered via a JSP directive:<%@ page
buffer="32kb" %>, and the response can be cleared before it isflushed
(HTTP Headers go before the HTTP body).Either don't attempt to write
HTML to the web page, or make sure yourbuffer size is big enough so that
the HTML can be buffered and clearedbefore you issue the re-direct. The
HTML will be ignored when the sendRedirect is used.

http://java.sun.com/products/jsp/tags/11/syntaxref11.fm7.html
http://www.esus.com/javaindex/j2ee/javajsp/jspbufferautoflush.html

David Stevenson

On Thu, 2004-12-02 at 12:30, Pradeep Chauhan wrote:

> ----- Root Cause -----
> java.lang.IllegalStateException
>       at
> org.apache.coyote.tomcat4.CoyoteResponseFacade.sendRedirect(CoyoteResponseFa
> cade.java:340)
>       at org.apache.jsp.DreamScreen_jsp._jspService(DreamScreen_jsp.java:564)

> 
> Thanks and Regards,
> Pradeep Chahan
> 
> 
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to