I am generating excel reports in weblogic server 7.0 using servlets and I use JCOM for this. The code is like this ...
code : import http.servlet.*; .. public class servlet name extends .. //DB connection Connection con = null;
//JCOM or Jintegra code Cleaner.trackObjectsInCurrentThread(); excel.Application app = new excel.Application(); excel.Workbooks workbooks = app.getWorkbooks();
//download part response.setHeader("Content-Disposition","attachment; filename=\""+ new String(fileJa.getBytes("Shift_Jis"),"ISO8859_1") + ".xls\""); response.setHeader("Content-Description","super "); response.setHeader("Pragma","Public");
}
Here when I click generate reports i can download excel file by answering an dialog box whether to "save" or "open".
My prob is when i do not answer an dialog box in one machine and keep the box as it is, I am not able to further proceed to generate report in other machines.
How could I rectify this problem... Some times i could get reports generated when not answered.