Quoting Mark Lee <[EMAIL PROTECTED]>: > > Hi, > > I'm trying to dynamically generate a pdf from a jsp but get a blank page > instead. I'm using an IE browser, jboss with jetty. I can write this to > file but i can't seem to stream it out to the browser. I don't get any > errors, only a blank modal window for my page.
As you may have seen in the mailing-list archives, many developers have cursed MSIE for this problem. With every new version, old MSIE bugs get fixed and new ones are introduced. I can just give you some hints: - are you sure you didn't add newlines to the PDF for instance: %> <% in a JSP creating a binary IS NOT ALLOWED. It should be %><% - MSIE triggers multiple (sometimes 2, sometimes 3) requests to the server. Maybe this causes some problems rendering the PDF. - ... (see the archives for more info) Bruno ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ iText-questions mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/itext-questions
