RE: FOP and strus (IE problem)

2002-02-19 Thread Robert
PROTECTED]] Sent: Tuesday, February 19, 2002 1:08 PM To: Struts Users Mailing List Subject: Re: FOP and strus (IE problem) I still couldn't get it working in IE. I use weblogic as the webserver... Do I have to do anything specific to weblogic? Thanks John --- Arron Bates [EMAIL PROTECTED] wrote

Re: FOP and strus (IE problem)

2002-02-19 Thread Tadashi Ishikawa
I had the same problem.(Not IE problem) FOPServlet works fine under Tomcat3.2.3 and OC4J(Orion). IE has a URL problem. but this is not the case. FO - FOP - PDF works fine under WebLogic6.1sp1 as well. XML + XSL -Xalan -FO - FOP -PDF won't work. PDF file size was 0 in NN also. I thought Xalan

RE: FOP and strus

2002-02-17 Thread Ajay Chitre
One approach would be to convert java objects to xml using Castor and then pass the XML to FOP. HTH. -- Original Message -- Hi, I am looking into FOP in generating PDF in struts... the examples so far that I have seen are only taking static XML files and XLS files. Can someone tell me how to

Re: FOP and strus (IE problem)

2002-02-17 Thread John Ng
Hi, The following is a piece of the code that I write in the perform method of an ActionForm to generate the PDF. However, it works fine in netscape, but NOT IE. Can someone help me with this? Thanks! John File xsltfile=new File(c:/uwreportdet.xsl); File xmlfile=new

Re: FOP and strus (IE problem)

2002-02-17 Thread Gregor Rayman
John Ng [EMAIL PROTECTED] wrote: Hi, The following is a piece of the code that I write in the perform method of an ActionForm to generate the PDF. However, it works fine in netscape, but NOT IE. Can someone help me with this? Thanks! John Try adding ?.pdf to the url. -- gR -- To

Re: FOP and strus (IE problem)

2002-02-17 Thread Arron Bates
Oh, what a world of pain. IE in this regard is a pile of *@!# and NS is the absolute honey :) This is off-struts, but I know the pain you go through to get IE going properly. Here's what I had to do to get it running reliably... // START CODE --== // set the response type

FOP and strus

2002-02-16 Thread John Ng
Hi, I am looking into FOP in generating PDF in struts... the examples so far that I have seen are only taking static XML files and XLS files. Can someone tell me how to use FOP to generate pdf with dynamic XML string (generated by some java objects) on the fly? I would apprecaite if you could

Re: FOP and strus

2002-02-16 Thread Nick Pellow
PM Subject: FOP and strus Hi, I am looking into FOP in generating PDF in struts... the examples so far that I have seen are only taking static XML files and XLS files. Can someone tell me how to use FOP to generate pdf with dynamic XML string (generated by some java objects) on the fly