Nadler Paul wrote:
>
> Speaking of Enumeration problems, I get an "Attempt to clear a buffer that's
> already been flushed" error when trying to just declare an Enumeration object.
> (I'm currently running under LiteWebServer 2.2.1, by the way.) Any ideas?

The message you get is most likely a side-effect of some other runtime error
in your page, since the JSP container tries to clear the buffer to show the
error page (this is a bug in the JSP container, will be fixed in the next
LWS release). Look very carefully at your code in the page, or enclose it in
a try/catch and write the exception message to System.out in the catch clause:

<%
  try {
    // Your stuff
  }
  catch (Throwable t) {
    System.out.println("Exception: " + t.getMessage());
  }
%>

Hans
--
Hans Bergsten           [EMAIL PROTECTED]
Gefion Software         http://www.gefionsoftware.com

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to