Header lines appearing in body after redirect with IIS.

2001-04-05 Thread Jacob Shukert
Hi, After I changed to using IIS instead of Tomcat's built-in web server, I encountered the following problem: I request a web page that redirects to a second web page after writing some output. The resulting web page contains this initial output plus the following header fields plus the web

Re: Header lines appearing in body after redirect with IIS.

2001-04-05 Thread Guntupalli Shanti
Hi Jacob, I had the same problem...but only with IE, with Netscape it was fine. In my case, the connection was kept alive and the output is appended to the response buffer whenever I use sendRedirect method. I added the following line to my code before reading anything from response object (best

RE: Header lines appearing in body after redirect with IIS.

2001-04-05 Thread Jacob Shukert
: Re: Header lines appearing in body after redirect with IIS. Hi Jacob, I had the same problem...but only with IE, with Netscape it was fine. In my case, the connection was kept alive and the output is appended to the response buffer whenever I use sendRedirect method. I added the following line