Re: JSP implicit writer (out) vs. response.getWriter()

2003-11-24 Thread Mark Roth
: Saturday, November 22, 2003 10:32 PM Subject: JSP implicit writer (out) vs. response.getWriter() Hi all, I recently started working with Tomcat (4.1.29) and ran into an inconsistency between the implicit out variable in a JSP and response.getWriter(). Consider this JSP: html body Me

Re: JSP implicit writer (out) vs. response.getWriter()

2003-11-23 Thread Karl Goldstein
} Then in PageContextImpl._initialize: this.response = new JspResponseWriter(response, this.out); Thoughts? Regards, Karl Goldstein - Original Message - From: Karl Goldstein To: [EMAIL PROTECTED] Sent: Saturday, November 22, 2003 10:32 PM Subject: JSP implicit writer (out) vs

JSP implicit writer (out) vs. response.getWriter()

2003-11-22 Thread Karl Goldstein
Hi all, I recently started working with Tomcat (4.1.29) and ran into an inconsistency between the implicit out variable in a JSP and response.getWriter(). Consider this JSP: html body Me first. % response.getWriter().println(Me second); % /body /html I was surprised to discover that the out