Hi, In my JSP page i have many response.sendRedirect. Is this teh reason for above exception that is more response.sendRedirect then one on same jsp can some one help me out. vebs
More than likely. This is a big argument for only placing sendRedirects and forwards in Servlets and never in JSPs. If the buffer for the output has filled, the response will be sent to the client, and the response is 'comitted'. That is, it is now too late to send them something else or somewhere else. You need to make these decisions before you start outputting data to the client, which is why the MVC architecture and Servlets is a much better way to manage this. Some people solve this by making the buffer larger, but this is inefficiant and only hides the problem. It doesn't solve it. Dave
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.