Apr 21
What this means:Your jsp/jspx file has grown too big.
Fix:Do a JSP include.
It helps split the file up and yet to the browser the page still looks like it is one file.
Here is what the include looks like:
<%@ include file=”/includes/NewFile.jspf”%>
There is a trick where you can get ADF not to create a Page Def file for NewFile’s but rather point to point to the first one. I never figured that out. What I did was let ADF create the NewFile’s page def and just mirror it from the old file. I know, this is really bad but it had to be done at the time.

February 10th, 2010 at 7:41 am
Hi, the problem is: your JSP have too much code line. It´s very big. You can cut it, and use ” to concatenate.
Bye.