Re: markers

2002-02-28 Thread Christian Geisert
Savino, Matt C wrote: So that's two new jar files, logging errors, no benchmarking output and broken markers in .20.3. Looks like I'm going to have to live w/o Hey you forgot removed PNG support ;-) Which benchmarking output do you mean ? There is some info if you invoke fop with the -d switch.

RE: XMLSpy - FOP

2002-02-28 Thread Savino, Matt C
Thanks Peter. I'm really glad to hear some positive news about the redesign! I'll try to get on that list and check out the code. I like reading Perl, it's therapeutic when you have to deal with Java all day long. I'm sure FOP is a very tough problem. I regretted the tone of that last email as

RE: XMLSpy - FOP

2002-02-28 Thread Arved Sandstrom
-Original Message- From: Savino, Matt C [mailto:[EMAIL PROTECTED] Sent: February 27, 2002 9:15 PM To: '[EMAIL PROTECTED]' Subject: RE: XMLSpy - FOP Thanks Peter. I'm really glad to hear some positive news about the redesign! I'll try to get on that list and check out the code. I like

Re: XMLSpy - FOP

2002-02-28 Thread Peter B. West
Arved et al, To clarify further: there are three re-design efforts going on. Keiron Karen in Java, building on the existing code base. Arved doing a ground-up redesign in Perl (protptyping) and C or C++, as he has discussed. Me, in Java, doing a ground-up. Do not despair. If Flannery

Re: Have anyone used FOA tool

2002-02-28 Thread Jeremias Maerki
I am having problem with bringing up the main window Formatting Object Authoring Tool window. All the other windows come up ok. That's probably the wrong spot to ask. http://foa.sourceforge.net/ Cheers, Jeremias Märki mailto:[EMAIL PROTECTED] OUTLINE AG Postfach 3954 - Rhynauerstr. 15 -

SV: dynamic image in PDF

2002-02-28 Thread Magnus Rydin
I think he wanted to use a javax.activation.DataSource or equalent to be able to write an image held in memory directly without storing it, but I could be wrong :) WR -Ursprungligt meddelande- Från: Jeremias Maerki [mailto:[EMAIL PROTECTED] Skickat: den 28 februari 2002 08:20 Till:

Re: markers

2002-02-28 Thread Etwin van Krimpen
Arved, I would appreciate that. One of the reasons to turn to (at this moment evaluation-version of) XEP is that XEP works fine with marker-retrieve marker. Regards, Etwin - Original Message - From: Arved Sandstrom [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, February 27,

Re: calling fop from java

2002-02-28 Thread Alexandre Denes dos Santos
Use: Driver driver = new Driver(InputStream in, OutputStream out); driver.setRenderer(Driver.RENDER_PDF); driver.run(); where 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

Re: calling fop from java

2002-02-28 Thread Fischer Tibor
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 driver = new Driver(InputStream in, OutputStream out); driver.setRenderer(Driver.RENDER_PDF); driver.run(); where in is the

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 driver = new

RE: calling fop from java

2002-02-28 Thread Samimi, Ashkan (Contractor)
Try this: This is by the way a part of my servlet. parser = new DOMParser(); parser.parse(invoice1.xsl); document = parser.getDocument(); Driver FOPDriver = new Driver(); ByteArrayOutputStream out = new ByteArrayOutputStream();

AW: calling fop from java

2002-02-28 Thread S. Jayaraman
Hi This is an extract from the site: http://xml.apache.org/fop/embedding.html Driver driver = new Driver(); driver.setRenderer(Driver.RENDER_PDF); InputHandler inputHandler = new XSLTInputHandler(xmlFile, xslFile); XMLReader parser = inputHandler.getParser();

Re: AW: calling fop from java

2002-02-28 Thread Fischer Tibor
Thanks for everybody's help Fishy S. Jayaraman wrote: Hi This is an extract from the site: http://xml.apache.org/fop/embedding.html Driver driver = new Driver(); driver.setRenderer(Driver.RENDER_PDF); InputHandler inputHandler = new XSLTInputHandler(xmlFile, xslFile); XMLReader parser =

How to expand blocks in table in table ?

2002-02-28 Thread Torsten Krämer
I need to show a set ( a lot of ) of key-value pairs layed out in grid. I took a table, in each cell I put a block with border and background set into which goes a new table with 2 rows each one cell. First cell holds the key wich is in smaller font, and the value . If the conent is to big for

Using FOP from ASP

2002-02-28 Thread TSchutzerWeissmann
I'm using FOP in a Windows environment and I want if possible to be able to process a large batch of .fo files using a script. The easiest way for me to do this is to use FOP as a COM object. Can I do this? So far I've tried: - including the path to fop.jar in my classpath variable - using

Re: Using FOP from ASP

2002-02-28 Thread Bertrand Delacretaz
On Thursday 28 February 2002 16:58, [EMAIL PROTECTED] wrote: I'm using FOP in a Windows environment and I want if possible to be able to process a large batch of .fo files using a script. The easiest way for me to do this is to use FOP as a COM object. Can I do this? Not out-of-the box

Re: Using FOP from ASP

2002-02-28 Thread Bertrand Delacretaz
On Thursday 28 February 2002 17:26, [EMAIL PROTECTED] wrote: Bertrand wrote: Another option would be to use FOP over an HTTP interface: configure FOP as an HTTP servlet (using Cocoon for example) and call it from your ASP code: That sounds a much saner way of doing things, although I don't

RE: XMLSpy - FOP

2002-02-28 Thread Savino, Matt C
So basically, the nuts are on the anvil? I hope no-one reads this mailing list. Or just run a search on Google in a few days. Better not put any fudges on your resume that can be contradicted by any post you've *ever* made to a newsgroup, mailing list or website. At least not if you have

Re: XMLSpy - FOP

2002-02-28 Thread Chuck Paussa
Matt, Put this line at the top of your batch file: @echo 1:[ %1 ] 2: [ %2 ] 3: [ %3 ] 4: [ %4 ] 5: [ %5 ] 6: [ %6 ] 7: [ %7 ] 8: [ %8 ] 9: [ %9 ] t.out Then look at t.out to see what XMLSpy is sending to the batch file. Then try the same sequence from the command line to figure out what's

FOPException

2002-02-28 Thread Xie, David (IPCG-NJ)
Hi All, I am getting a FOPException error when I sent large number of requests to FOP servlet. I checked the FOPException.java, and can't figure out what is causing this problem. What confuses me is of the 100 pdf requests sent, majority of them came back successful, only a few gave me

Is it possible?

2002-02-28 Thread andrbozz
I'm looking to use fop to render this document. I would like to know if is possible to render this document with fop. Thanks in advance and i'm sorry for my bad english. 730cmod.pdf Description: Adobe PDF document