Hi, I have a code segment which generates the file download dialog in the browser. The file types supported are .qif, .xls
response.setContentType(download.getContextType()); response.setHeader("Content-Disposition", "attachment; filename=" + download.getFileName() ); BufferedWriter out = new BufferedWriter(new OutputStreamWriter(response.getOutputStream())); out.write(download.getReport()); out.flush(); out.close(); This works great over HTTP in both IE 6.0 and Netscape 4.78. But when I try this over HTTPS, the download dialog shows up with the file name as the URL (download.do) and nothin in content type. So IE displays an error message saying that download cannot be completed. It works great in Netscape 4.78 Has anybody come across this situations? Any solutions? I am using Struts RC-1 on weblogic 5.1, JDK 1.3.1 Thanks Shoba --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]