Is it possible to increase the default JSP buffer size from 8k in Weblogic 7.0SP2.
We're hitting a problem with the buffer being flushed before we'd expect it and want a quick and dirty solution initially.
We can then investigate it fully once we fixed the failures.
Thanks,
Richard Kenyon
-
Can I increase the default JSP Buffer Size? (3 messages)
- Posted by: Richard Kenyon
- Posted on: March 29 2004 03:26 EST
Threaded Messages (3)
- Can I increase the default JSP Buffer Size? by David Rabinowitz on March 29 2004 07:26 EST
- Replace buffer size by Martin Robson on November 09 2004 14:48 EST
- . by Richard Kenyon on March 30 2004 08:37 EST
-
Can I increase the default JSP Buffer Size?[ Go to top ]
- Posted by: David Rabinowitz
- Posted on: March 29 2004 07:26 EST
- in response to Richard Kenyon
You can ad in the page directive the attribute "buffer" like this:
<%@ page buffer="64kb" ... %>
David -
Replace buffer size[ Go to top ]
- Posted by: Martin Robson
- Posted on: November 09 2004 14:48 EST
- in response to David Rabinowitz
I did have a buffer size problem, and I used a line like this to replace them.
/usr/bin/perl -pi -e 's|buffer="64kb"|buffer="4096kb"|g' `find . -type f -name '*.jsp'` -
.[ Go to top ]
- Posted by: Richard Kenyon
- Posted on: March 30 2004 08:37 EST
- in response to Richard Kenyon
Hi,
Thanks. Reading my post again, I didn't give all the information :-)
I realise I can change each page manually using the page directive, but I was after a quick and dirty global fix that changed the buffer size for all JSP's.
I've since spoken with BEA, and it turns out that this is not possible.
Anyway, it turns out it wasn't the buffer size after all :-)
Thanks,
Richard Kenyon