RE: large class file generated..

2003-11-05 Thread Shapira, Yoav
sers List >Subject: RE: large class file generated.. > >Tim, > >Thanks for the suggestions. Infact, you are right about the out.print >statements. JASPER is creating new statements for each End Of Line and >hence >the problem. But weblogic is combining all of them to a sizeab

RE: large class file generated..

2003-11-05 Thread Amarnath Reddy
class file generated.. Since a JSP is converted to java code, the jsp runs in a method called _jspService (or a very similar name as dicated by the spec). The java language itself has a constraint that no method may be larger than the upper limit you are running into. [I think jasper generates an

Re: large class file generated..

2003-11-05 Thread Tim Funk
Since a JSP is converted to java code, the jsp runs in a method called _jspService (or a very similar name as dicated by the spec). The java language itself has a constraint that no method may be larger than the upper limit you are running into. [I think jasper generates an out.print() for each

large class file generated..

2003-11-05 Thread Amarnath Reddy
Title: Blank Hi, Could anyone shed some light on this problem? I'm using Tomcat 4.1.18. JASPER is creating lots of lines for out.write statements and giving the following error. When compared to weblogic, the generated code after compiling the page is almost 12 times large. The same code wor