[TC4] Confusion over JspWriter and IOException in compiled JSPs (Tomcat bug...?)

2001-09-24 Thread chris brown
Hello, In a JSP page, I have a method a bit like this: void myMethod(Object someParam, JspWriter out) throws IOException { ... } The use of out is for some quick debugging. Anyway, this code works fine under Tomcat 3.2.3, but porting it over to TC4 final produced the following compilation

Re: [TC4] Confusion over JspWriter and IOException in compiled JSPs(Tomcat bug...?)

2001-09-24 Thread Dmitri Colebatch
you need to import java.io.IOException probably in previous versions of tomcat the generated code imported this method, thus masking the fact that you didn't import it they now (I guess) dont do this, and so the compiler is looking for IOException in the package of the code, which is

Re: [TC4] Confusion over JspWriter and IOException in compiled JSPs (Tomcat bug...?)

2001-09-24 Thread chris brown
know which class is which, but lines of code won't fit easily on screen at the same time!). -Chris - Original Message - From: Dmitri Colebatch [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, September 24, 2001 1:41 PM Subject: Re: [TC4] Confusion over JspWriter and IOException

Re: [TC4] Confusion over JspWriter and IOException in compiled JSPs(Tomcat bug...?)

2001-09-24 Thread Dmitri Colebatch
[EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, September 24, 2001 1:41 PM Subject: Re: [TC4] Confusion over JspWriter and IOException in compiled JSPs (Tomcat bug...?) you need to import java.io.IOException probably in previous versions of tomcat the generated code imported