Re: running FOP multiple times, at one tomcat server(and one JVM) (IMPORTANT)

2002-04-21 Thread Fischer Tibor
thanks, but i solved the problem. i had to put these row, into my FOP executer method: org.apache.fop.messaging.MessageHandler.setID(true); BR, Fishy J.Pietschmann wrote: Fischer Tibor wrote: I run FOP from a JSP page, at Tomcat webserver. It works fine, til there is only one user at a time

running FOP multiple times, at one tomcat server(and one JVM) (IMPORTANT)

2002-04-21 Thread Fischer Tibor
Hello, I run FOP from a JSP page, at Tomcat webserver. It works fine, til there is only one user at a time. But if 2 users want to use the fop converter at the same time, it fails, and says: type Exception report message Internal Server Error description The server encountered an internal error (

Re: charts and graphs

2002-04-13 Thread Fischer Tibor
Hi, i use jFreeChart for this operation. it's a java tool, with open source code. i wrote a java plugin, what generates, and returns an svg with a barchart, or any kind of charts. Then the xsl handles it, and show it in pdf. If you are interested, find me in private mail, and i send you the sour

bookmark

2002-04-12 Thread Fischer Tibor
Hello, How can i put entries into the bookmark of the pdf?? Thanks BR, Fishy

Re: to Fisher Tibor

2002-04-05 Thread Fischer Tibor
i mean comment out this line: transformer.setURIResolver(new TTURIResolver()); Fishy Fischer Tibor wrote: sorry, just comment out that line it should work without that. if not i send you that class too. i dont think you need that. Br, Fishy Marianne von den Driesch und Viktor Goebel wrote: Thanks

Re: to Fisher Tibor

2002-04-05 Thread Fischer Tibor
sorry, just comment out that line it should work without that. if not i send you that class too. i dont think you need that. Br, Fishy Marianne von den Driesch und Viktor Goebel wrote: Thanks for your help. We tried your code (using FOP 0.20.3) and got the message: TTURIResolver not found, is that

Re: problems with creating pdf

2002-04-05 Thread Fischer Tibor
what version of FOP do you use? try this code. it works perfectly with 0.20.3 FOP public static void execWFop(String xmlFile, String xslFile, String outputFile){ try{ try { javax.xml.transform.stream.StreamSource xmlSource=new javax.xml.transform.stream.StreamSource(new java.io.File(x

svg from string

2002-03-21 Thread Fischer Tibor
hi, i've got a java class with a method, what generates an svg object and returns it as string. i need fop to generate the svg into pdf, from the string. How? Thanks Fishy

java and fop again

2002-03-04 Thread Fischer Tibor
hi i tried to implement using fop in java, like this: Driver driver = new Driver(); driver.setRenderer(Driver.RENDER_PDF); InputHandler inputHandler = new XSLTInputHandler(new File(xmlFile), new File(xslFile)); XMLReader parser = inputHandler.getParser(); driver.setOutputS

Re: AW: calling fop from java

2002-02-28 Thread Fischer Tibor
arser = inputHandler.getParser(); driver.setOutputStream(new FileOutputStream(outFile)); driver.render(parser, inputHandler.getInputSource()); The above code should do it. Rgds Jay -Ursprüngliche Nachricht- Von: Fischer Tibor [mailto:[EMAIL PROTECTED] Gesendet: Donnerstag, 28. Februar 2002 15:

Re: calling fop from java

2002-02-28 Thread Fischer Tibor
e xsl that I have and a xml example for my tags. It´s is working, but the tags are still very limited because I´m still in the begining of the project. I´m also working in a wysiwyg tool to create the xsl file. Hope that helps. Denes - Original Message - From: "Fischer Tibor" <[EMA

Re: calling fop from java

2002-02-28 Thread Fischer Tibor
and what i forgot again, i only get 3 existing filenames (xml, xsl, and output pdf) Fishy Fischer Tibor wrote: that's ok, sorry but i didn't said, that i have an xml, and an xsl file, and i have to generate the pdf from them Fishy Alexandre Denes dos Santos wrote: Use: Driver dr

Re: calling fop from java

2002-02-28 Thread Fischer Tibor
in is the inputStream to the fo file that you will render and out is the outputstream where the pdf content will be write to. The package is org.apache.fop.apps. Hope that helps. Denes - Original Message - From: "Fischer Tibor" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> S

calling fop from java

2002-02-28 Thread Fischer Tibor
hi i would like to call the fop's transformation procedure from a running java application, to create pdf realtime how is it possible?? what method sholud i call?? Thanks, Fishy

Re: FOP0.20.3

2002-02-22 Thread Fischer Tibor
i had the same bug with fop0.20.3, so i use fop0.20.1 instead, and that's ok Fishy Meena wrote: Hi, I tried using fop0.20.3. But while using the batch file, i'm getting the following error. What could be the reason? Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/fop/app

svg

2002-02-21 Thread Fischer Tibor
hi, i would like to put svg file into the pdf, what i create from an xml file is it possible and if it is, how?? Thanks Fishy