Re: Exception Thrown in a JSP

2007-07-18 Thread Mark Thomas
Sam Klin wrote: > The line number from the exception trace is 259. There have been a couple of bug fixes in this area recently. They'll be in the next release. Mark - To start a new topic, e-mail: users@tomcat.apache.org To uns

Re: Exception Thrown in a JSP

2007-07-18 Thread Lyallex
Or of course you could be using a Vector ... or something else that extends AbstractList and a call to (Iterator).next() is causing the problem. Too many late nights. Rgds Duncan On 7/18/07, Lyallex <[EMAIL PROTECTED]> wrote: From the API docs public class NoSuchElementException extends Runti

Re: Exception Thrown in a JSP

2007-07-17 Thread Lyallex
From the API docs public class NoSuchElementException extends RuntimeException Thrown by the nextElement method of an Enumeration to indicate that there are no more elements in the enumeration. The line number in the trace is from the generated code and bears no relation to line numbers in the

Exception Thrown in a JSP

2007-07-17 Thread Sam Klin
I am trying to figure out how to debug the following exception that's thrown in one of my jsps. The line number from the exception trace is 259. If this is a line number from the underlying jsp then the line is: <%@ include file="inc/footer.jsp" %> this is also the last line in the jsp. If, on t