Re: jsp and servlet to present zip file for download

2008-04-19 Thread Rino Kadijk
Once you called: RequestDispatcher dispatcher = getServletContext().getRequestDispatcher("/servlet/ZipServlet"); You are not allowed to modify the (headers of the) response anymore. So after that call, you are not allowed to modify the outputstream. So this call is illegal after dispatching.

jsp and servlet to present zip file for download

2008-04-19 Thread Kimberly Begley
Hi, I'm stumped and was hoping someone might be able to point me in the right direction. I have an html page form that contains a series of checkboxes and radio buttons the form directs to a jsp page that processes the user's selections to determine which files to zip up for the user to download. I