RE: Output Volume

2001-02-06 Thread Kemp Randy-W18971
If something works OK with one piece of software, and not with another, then who is at fault? The one the program works with or the one it does not? This same dilemma occurred with someone running a program under Weblogic and Orion: It works for Orion but not for Weblogic. Try it with a

Re: Output Volume

2001-02-06 Thread Geoff Marshall
Check your implicit out object (Type JSPWriter). You can get the size of the output buffer from the bufferSize property and you can flush your output buffers before you hit that size. e.g. // output something out.println("..."); if (out.getRemaining() someComfortableMargin) {