We are facing problem of jsp file size exceeding to more than 5 MB at runtime. The jsp file is full of struts tag with lot many logic:equal, notEqual in the code. The compiled html when generated takes a lot of time for browser rendering because of the file size. Looking at the html source generated it seems the tags generates lots of blank line were ever used. If the source is modified to remove all the blank lines, the size reduces to 2 mb.
There is a Jasper servlet option which will remove the blank lines. Check for the trimSpaces attribute on the jasper servlet in the conf/web.xml config.
However it is still going to take processing time to remove the white space, so it might not be the enhancement you are hoping for.
Adam -- struts 1.1 + tomcat 5.0.16 + java 1.4.2 Linux 2.4.20 Debian
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

