Hi!
I have coded my servlet to convert PDF from XML
using FOP.
It is working in Netscape. I can view my
PDF.
When I try to run that particular servlet from
IE5.5, It is not coming.
But I can see my rendered debugging message in
the server console.
My code is below...
.......
.......
byte[] content =
out.toByteArray();
response.setContentType("application/pdf"); response.addHeader("Content-Disposition", "inline; filename=test.pdf"); response.setContentLength(content.length); response.getOutputStream().write(content); response.getOutputStream().flush(); response.getOutputStream().close(); I hope my code is correct. But I couldn't
understand why is this? Can you help me.
Thanks,
Wahab.
|
- Re: FOP does not rendering PDF in IE5.5 SP1 Abdul Wahab
- Re: FOP does not rendering PDF in IE5.5 SP1 Weiqi Gao
- Re: FOP does not rendering PDF in IE5.5 SP1 adel ben
- Re: FOP does not rendering PDF in IE5.5 SP1 Micheál Healy
- RE: FOP does not rendering PDF in IE5.5 SP1 COFFMAN Steven
- RE: FOP does not rendering PDF in IE5.5 SP1 Alex McLintock
- RE: FOP does not rendering PDF in IE5.5 SP1 axel . spohr
- RE: FOP does not rendering PDF in IE5.5 SP1 COFFMAN Steven