Re: code too large for try statement

2002-12-21 Thread Jitendra Singh
] Sent: Saturday, December 21, 2002 7:56 AM Subject: RE: code too large for try statement The try block is in the Java generated by the servlet container from the JSP. -Original Message- From: David Graham [mailto:[EMAIL PROTECTED]] Sent: Friday, December 20, 2002 8:10 PM To: [EMAIL

Re: code too large for try statement

2002-12-21 Thread Brian Alexander Lee
Removing the try/catch block would be a truly inelegant solution. The try/catch is probably added by the jsp compiler. BAL - Original Message - From: David Graham [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, December 20, 2002 8:09 PM Subject: Re: code too large for try statement

Re: code too large for try statement

2002-12-21 Thread Robert S. Sfeir
:56 AM Subject: RE: code too large for try statement The try block is in the Java generated by the servlet container from the JSP. -Original Message- From: David Graham [mailto:[EMAIL PROTECTED]] Sent: Friday, December 20, 2002 8:10 PM To: [EMAIL PROTECTED] Subject: Re: code too large

Re: code too large for try statement

2002-12-21 Thread Craig R. McClanahan
On Sat, 21 Dec 2002, Jitendra Singh wrote: I am a newbie ...but i read somewhere that there is a restrcition on the size of JSP, in-built in J2EE. The built in restriction is actually the JVM's limit of 64kb on the size of a particular method. It's not anything imposed by J2EE or the JSP

code too large for try statement

2002-12-20 Thread Michael Marrotte
I'm using lots of Struts custom jsp tags, e.g. logic, html, and bean. The JSP file size is about 27K. I'm getting the following error: 500 Servlet Exception /mainMenu.jsp:652: code too large for try statement } catch (java.lang.Throwable _jsp_e) { ^ /mainMenu.jsp:46: code too large

Re: code too large for try statement

2002-12-20 Thread David Graham
Why is there a try/catch block? David From: Michael Marrotte [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: code too large for try statement Date: Fri, 20 Dec 2002 16:48:37 -0500 I'm using lots of Struts custom jsp tags, e.g. logic

RE: code too large for try statement

2002-12-20 Thread Michael Marrotte
The try block is in the Java generated by the servlet container from the JSP. -Original Message- From: David Graham [mailto:[EMAIL PROTECTED]] Sent: Friday, December 20, 2002 8:10 PM To: [EMAIL PROTECTED] Subject: Re: code too large for try statement Why is there a try/catch block