Re: JSP Buffer Size

2005-05-23 Thread Catalin Croitoru
Hi, if you use Java Servlet specification version 2.3 (at least) you can use a Filter. make your filter intercept the jsp and in that filter you can change the buffer. for a more information about Filter take a look at this: http://java.sun.com/products/servlet/Filters.html Catalin On 5/22/05,

Re: JSP Buffer Size

2005-05-23 Thread Jason Lea
unday, May 22, 2005 4:13 PM To: Struts Users Mailing List Subject: Re: JSP Buffer Size assuming you can handle the exception when buffer overflows <%@ page buffer="9kb" autoFlush="false" %> Martin- - Original Message - From: "tarek.nabil" <[EMAIL PROTE

RE: JSP Buffer Size

2005-05-22 Thread tarek.nabil
ECTED] Sent: Sunday, May 22, 2005 4:13 PM To: Struts Users Mailing List Subject: Re: JSP Buffer Size assuming you can handle the exception when buffer overflows <%@ page buffer="9kb" autoFlush="false" %> Martin- - Original Message - From: "tarek.nabil&qu

Re: JSP Buffer Size

2005-05-22 Thread Martin Gainty
assuming you can handle the exception when buffer overflows <%@ page buffer="9kb" autoFlush="false" %> Martin- - Original Message - From: "tarek.nabil" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Sent: Sunday, May 22, 2005

JSP Buffer Size

2005-05-22 Thread tarek.nabil
Hi everyone, Is there some way that I can set the buffer size for all JSPs to some value other than the default 8kb without having to do it in every JSP? Thanks - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands

Re: What's best practice to determine correct jsp buffer size?

2004-05-28 Thread Kris Schneider
same size buffer. I don't have any data on how different containers behave in practice. Quoting Mick Wever <[EMAIL PROTECTED]>: > Read in a couple of places setting the jsp buffer size helps performance.. > atleast you can tweak between performance and memory usage.

What's best practice to determine correct jsp buffer size?

2004-05-28 Thread Mick Wever
Read in a couple of places setting the jsp buffer size helps performance.. atleast you can tweak between performance and memory usage... Anyone know how to determine what is the best size for setting the jsp buffer size [response.setBufferSize(..)] ? I'm using tiles, and when I use: LOG