Re: Passing page numbers to an external servlet

2002-05-01 Thread J.Pietschmann
Kevin Pearcey wrote: This won't work as it attempts to place the fo:page-number as an attribute of fo:external-graphic. This is the problem I have and as far as I can tell there is no way of solving it. It seems like xsl:fo just doesn't have the power to do much page conditional things without

RE: Current date integration

2002-05-02 Thread Sandrine Pilon
Hi Oleg J.Pietschmann, Sandrine Pilon wrote: OK ! But a problem persists. when I compile with FOP, It returns me errors about the line: 'exclude-result-prefixes=user' in stylesheet and I don't understand why. What is the error message ? Here is the result when I compiled with FOP:

Re: FOP memory consumption

2002-05-02 Thread Keiron Liddle
On 2002.05.01 16:34 Bernd Brandstetter wrote: So, I have two questions/suggestions: 1) Wouldn't it be possible to let FOP create the output in two steps like for instance (La)TeX does. Doing a dry run first only to calculate the page references, store them somewhere, and then produce the actual

Page Sequencing to conserve memory

2002-05-02 Thread John Bourke
I'm pretty new to XSL-FO and FOP and having problems with serious memory usage on 500-1000 page docuements using tables as a reporting tool. Being that I populate the data into the page sequence from my XML data file, does anybody know of a way to end the page sequence after a screen full of data

Re: Current date integration

2002-05-02 Thread Oleg Tkachenko
Sandrine Pilon wrote: ** [INFO]: FOP 0.20.3 file:///D:/Program Files/FOP/fop-0.20.3/MCCFdConfig_FO_2.xsl; Line 7; Column 40; [ERROR]: null ** and the line 7 is this:

Re: [ERROR]: Don't know what to do with

2002-05-02 Thread jens
I had the same error message since I use fop 0.20.2 and later fop 0.20.3, but I had no problems with fop 0.20.1 and earlier versions. I don't know what EXACTLY is the problem but the problem solved itself after I changed my OS from Windows ME to Windows 2000 (using the SAME UNMODIFIED fop

Re: [ERROR]: Don't know what to do with

2002-05-02 Thread L'eau
I'm glad I'm not the only one with this problem. Interesting you noticed a problem when using it on Windows ME (i'm using that OS myself). I just found Fop 0.20.1 works exactly as expected, but Fop 0.20.3 still gives me that strange error. I'm not sure how the OS could possibly affect a java

Re: Current date integration

2002-05-02 Thread Oleg Tkachenko
hmmm, well, with version attribute the transformation works fine with saxon and xalan, but it produces no fo elements, how do you use it with fop? Sandrine Pilon wrote: Version 1.0 stylesheet is included but it's a copy/paste problem . Also fo element are included but I wanted to be concise. I

Re: [ERROR]: Don't know what to do with

2002-05-02 Thread Christian Geisert
L'eau wrote: Ok, so I had the time to download an old FOP version, and was glad to see it had a jimi-1.0.jar in it! It works to a degree. I did this: C:\xsl\buildFop list.fo list.pdf Now I get the following error message now: [ERROR]: Don't know what to do with .and that's it. It doesn't even

OutOfMemory - What worked for me.

2002-05-02 Thread John Bourke
Hi guys, I had been having the memory issue over the last number of days. My fix that has worked and probably been posted before was to split up the pages of my file using a correct implementation of page sequences. Previously I had been pumping all data into one page sequence and breaking it

Re: [ERROR]: Don't know what to do with

2002-05-02 Thread Jens Khnberger
did you try C:\xsl\buildFop -fo list.fo -pdf list.pdf ? Christian Geisert wrote: L'eau wrote: Ok, so I had the time to download an old FOP version, and was glad to see it had a jimi-1.0.jar in it! It works to a degree. I did this: C:\xsl\buildFop list.fo list.pdf Now I get the following error

Re: I get a mysterious NoClassDefFoundError

2002-05-02 Thread Jeff_Mitchell
Devon- Check J.Pietschmann's reply to your problem. He explains why your original command wasn't working, and why Jimi isn't included in the FOP download. I believe you can just download Jimi from the Sun site if you want it, but I've been running with the batch file as is, with no problems.

Re: Memory consumption with large images in FOP

2002-05-02 Thread Jeff_Mitchell
J.Pietschmann- Thanks for your help. I think I may be running out of memory when viewing the PDF. I'll do some playing around on my end, but your explanations should help a lot. Thanks again, -Jeff

RE: OutOfMemory - What worked for me.

2002-05-02 Thread Savino, Matt C
This is great if you have logical page breaks. Only one of our reports has any logical page breaks however. So I can insert new page-sequences every 1000 rows or so. But unless I start counting rows and trying to guess at when a cell wraps, I have no way of preventing page breaks that leave

Re: Basic-link problem in JSPs

2002-05-02 Thread J.Pietschmann
Ralf Steppacher wrote: Are you, by any chance, using disable-output-escaping somewhere? Yes, but somewhere else in the stylesheet producing the fo document. It doesn't matter where. Do not use d-o-e if you expect your style sheet to work with short-circuit XSLT processor applications. XSLT doesn't

Re: [ERROR]: Don't know what to do with

2002-05-02 Thread J.Pietschmann
Christian Geisert wrote: You could try fop list.fo list.pdf (with quotes) Not a very good idea on Win95/98/ME (or any other system), it searches for a command file fop list.fo list.pdf.exe (with spaces) On Win95/98/ME, the command processor feeds the whole command line in one piece to the

Re: Trying to resolve memory exception through correct use of pag e se quencing

2002-05-02 Thread J.Pietschmann
John Bourke wrote: J. below is my layout-master-set followed by the way I start the page sequence for my repeatable page. fo:page-sequence-master master-name=reportDetails fo:repeatable-page-master-alternatives fo:conditional-page-master-reference master-name=detailPage

Re: Page Sequencing to conserve memory

2002-05-02 Thread J.Pietschmann
John Bourke wrote: I'm pretty new to XSL-FO and FOP and having problems with serious memory usage on 500-1000 page docuements using tables as a reporting tool. Being that I populate the data into the page sequence from my XML data file, does anybody know of a way to end the page sequence after a

Re: Setting a maximum number of charcaters in a line

2002-05-02 Thread J.Pietschmann
Stéphane REYNIER wrote: Is there any solution for setting a maximum number of charcaters whitin a line ? I have to built two areas with 4 lines of 80 charcaters each, in a PDF document. You can't set a maximum for the number of characters in a line. You should already generate fo:block

RE: Trying to resolve memory exception through correct use of pag e sequencing

2002-05-03 Thread John Bourke
Excellent thanks J. -Original Message- From: J.Pietschmann [mailto:[EMAIL PROTECTED] Sent: 02 May 2002 21:39 To: [EMAIL PROTECTED] Subject: Re: Trying to resolve memory exception through correct use of pag e se quencing John Bourke wrote: J. below is my layout-master-set followed by

How do I stop table cell wrapping?

2002-05-03 Thread John Bourke
Guys is there a way to stop cells in a table wrapping the text to the next line and simply cutting the data if it's longer than the cell width? I would think there may be some kind of attribute to do this? *** This email and

Re: How do I stop table cell wrapping?

2002-05-03 Thread Stéphane REYNIER
You can do that whith the attribute wrap-option set to no-wrap like this : fo:table-cell fo:block wrap-option=no-wrap /fo:block fo:table-cell - Original Message - From: John Bourke [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, May 03, 2002 10:45 AM Subject:

RE: How do I stop table cell wrapping?

2002-05-03 Thread John Bourke
Thanks Stephane I really appreciate that! -Original Message- From: Stéphane REYNIER [mailto:[EMAIL PROTECTED] Sent: 03 May 2002 10:16 To: [EMAIL PROTECTED] Subject: Re: How do I stop table cell wrapping? You can do that whith the attribute wrap-option set to no-wrap like this :

AW: Problem after generating PDF

2002-05-03 Thread Tobias Mueller
Hi! In my case, the following code worked: import java.io.*; import java.util.*; import org.xml.sax.InputSource; import org.xml.sax.XMLReader; import org.apache.fop.apps.Driver; import org.apache.fop.apps.Version; import org.apache.fop.apps.InputHandler; import

Re: Problem after generating PDF

2002-05-03 Thread Ralf Steppacher
[..] Driver driver = new Driver(); driver.setRenderer(Driver.RENDER_PDF); InputHandler inputHandler = new XSLTInputHandler(xmlFile, xslFile); XMLReader parser = inputHandler.getParser(); / changes start here / FileOutputStream fos = FileOutputStream( outFile );

Best coding practice.

2002-05-03 Thread Balaji Loganathan
Hi, Is there is any best practice for coding the XSL:FO, that is always 1. use xsl:template 2. check whether the element exist or not even for mandatory elements. My xsl is of 578 lines,Suddenly i felt that my code is not object oriented beacuse no where i have used xsl:template.

AW: Best coding practice.

2002-05-03 Thread Chaumette, Patrick
Hello Balaji, I think if you don't use any xsl:template match=..., then the processing speed would be fastest, since the XSLT has nothing much to do just to write out what you have. If it is good practice is another story... Greetings, Patrick Dipl. Inform. Patrick Chaumette T-Systems ITS GmbH

Re: Best coding practice.

2002-05-03 Thread Jeremias Maerki
Balaji, xsl:template mainly helps you split up your processing in handy parts that may even be reused instead of copy-pasted. Copy-Paste is often A Bad Thing (TM). That's probably one of the top ten best practices in every computer language. Processing speed is always one thing. Maintainability

Re: Basic-link problem in JSPs

2002-05-03 Thread J.Pietschmann
Ralf Steppacher wrote: OK, I got rid of all the d-o-e. But the basic-links still are not present in the pdf generated by the embedded FOP but are if the .fo document is dumped to a file and then rendered using FOP from commandline. Can you post a trimmed down version of your source XML and the

Re: How do I stop table cell wrapping?

2002-05-03 Thread J.Pietschmann
John Bourke wrote: Guys is there a way to stop cells in a table wrapping the text to the next line and simply cutting the data if it's longer than the cell width? I would think there may be some kind of attribute to do this? You probably want to use the overflow=clip property too, unfortunately,

Re: Best coding practice.

2002-05-03 Thread J.Pietschmann
Balaji Loganathan wrote: Hi, Is there is any best practice for coding the XSL:FO, that is always 1. use xsl:template 2. check whether the element exist or not even for mandatory elements. My xsl is of 578 lines,Suddenly i felt that my code is not object oriented beacuse no where i

RE: How do I stop table cell wrapping?

2002-05-03 Thread Matthew L. Avizinis
I seem to recall that the fo:block wrap-option=wrap | no-wrap attribute works in cells. -Original Message- From: J.Pietschmann [mailto:[EMAIL PROTECTED] Sent: Friday, May 03, 2002 4:12 PM To: [EMAIL PROTECTED] Subject: Re: How do I stop table cell wrapping? John Bourke wrote:

Re: Blank pages

2002-05-03 Thread J.Pietschmann
Ralf Steppacher wrote: I wonder how I can procude legal empty pages (and then suppress them)? Forced blank pages are mainly created by page count constraints, for example a break-before=odd-page will insert a page break, and if the new page has an even page number, a blank page is inserted, and

RE: How do I stop table cell wrapping?

2002-05-03 Thread Matthew L. Avizinis
Now I get the whole picture thanks, -Original Message- From: J.Pietschmann [mailto:[EMAIL PROTECTED] Sent: Friday, May 03, 2002 5:20 PM To: [EMAIL PROTECTED] Subject: Re: How do I stop table cell wrapping? Matthew L. Avizinis wrote: I seem to recall that the fo:block

Absulute Pagenumber

2002-05-04 Thread Ingo Peter
Hi, first thanks for the last help generating pdf embedded. In the reference I find no reference for print the absolute pagecount on every page: Page: page-number of absolute-page Is there any solution for this problem...? thanks IP

Re: Blank pages

2002-05-04 Thread Ralf Steppacher
I wasn't precise enough in my first posting. Next try... I wonder how I can procude legal empty pages (and then suppress them)? Forced blank pages are mainly created by page count constraints, for example a break-before=odd-page will insert a page break [..]. My empty page results from

Re: Absulute Pagenumber

2002-05-04 Thread J.Pietschmann
Ingo Peter wrote: In the reference I find no reference for print the absolute pagecount on every page: Page: page-number of absolute-page Is there any solution for this problem...? It's an old hat, the list archives as well as the FO part of the XSL FAQ have solutions. Put an id on some block

Re: [ERROR]: Don't know what to do with

2002-05-04 Thread Carlos Araya
Because of a licensing issue, you now need to download jimi-1.0.jar from the sun website. Check the fop website for more information Carlos On 05/02/02 1:55, L'eau [EMAIL PROTECTED] wrote: Ok, so I had the time to download an old FOP version, and was glad to see it had a jimi-1.0.jar in it! It

How to start New page for every category

2002-05-05 Thread Mohamed Abdel Hameed
Hello everybody i have an xml file which contrain categories and each category cotain some article something like this : category category-nameCategory 1/category-name article article-no/article-no descriptionArticle-1 test desc/description cost

RE: : XML - MS Word??

2002-05-06 Thread Garcia, Armando (Armando)
A little late but I'm sure this will end it anyway. Everything you need to know is the schemas microsoft is using (for Word, Excel, etc.) Go to http://msdn.microfost.com/library then navigate as follows on the left tree structure: Office Solutions Development Microsoft Office Microsoft

Re: Memory usage on lage documents

2002-05-06 Thread Baptiste Casanova
Memory usage is the weakness of FOP. But you should try to increase the memory available for your JVM, using java -Xms100m -Xmx250m (for example). And if tou have big tables, you should generate page-sequence breaks. Hi there folks! I've a question regarding the memory usage of the fop

AW: Memory usage on lage documents

2002-05-06 Thread Mirko Sertic
Hi there again! Thanks for your help. I think you are right and my extremly long page sequences are the matter. In fact, i have only one page-sequence. The problem is, i cannot create multiple page sequences because i do not know where to break my pages. Every table-row in my document is unique

Image resize problem

2002-05-06 Thread Bill Buermeyer
The BMP and GIF images in my PDFs look fine, but when I use the PCL renderer to print, my images shrink down about 50%. Has anyone seen this and is there a workaround? Thanks!

Java 1.1.x

2002-05-06 Thread Kendall Adkins
I have a client who is using a Domino server. Domino only supports the Java 1.1.8 SDK. I have been unable to find a version of FOP that will run with this SDK. Does anyone have any suggestions? Thank you in advance, Kendall Adkins [EMAIL PROTECTED]

Re: DTD name retrieving

2002-05-06 Thread J.Pietschmann
Marie Steinberg wrote: I would like retrieve DTD name (of xml) in my xsl stylesheet with solution that compile with FOP. Is there solution using Java class ? First question: what is the DTD name: the system identifier (usually a file name or URL), the optional public identifer, or the name of the

Re: Java 1.1.x

2002-05-06 Thread J.Pietschmann
Kendall Adkins wrote: I have a client who is using a Domino server. Domino only supports the Java 1.1.8 SDK. I have been unable to find a version of FOP that will run with this SDK. Does anyone have any suggestions? Recent FOP versions need JDK1.2, perhaps even 1.3. I think you should look for

RE: Memory usage on lage documents

2002-05-06 Thread Savino, Matt C
If you know that none of your table cells are going to wrap you could count rows at the XSLT level and put in a new page sequence every x pages. This defeats a lot of the elegance of FOP, but could work. My problem is I have lots of random cell-wrapping, and I'm not about to start trying to

Re: DTD name retrieving

2002-05-07 Thread Marie Steinberg
First question: what is the DTD name: the system identifier (usually a file name or URL), the optional public identifer, or the name of the document element? The DTD name is the name of the DTD file, for example: 'foo.dtd'. is it the system identifier ? There is no standardized mechanism to

AW: Java 1.1.x

2002-05-07 Thread Chaumette, Patrick
Hello, I had also problems compiling FOP-0.20.3 with JDK 1.2. For example some changes in AWTFontMetrics concerning Fonts are not portable on JDK1.2. The release notes should be changed to reflect this. They still say JDK 1.2(or later) is required. Since I didnt want i18n support I could take

Re: Basic-link problem in JSPs

2002-05-07 Thread Ralf Steppacher
First of all: Thank you very much for your help! fo:basic-link internal-destination=addressListHeading fo:page-number-citation color=blue ref-id=addressListHeading/ /fo:basic-link This is the real problem. You probably noticed that the link area is not the whole page number, in particular

MissingResourceException

2002-05-07 Thread Ryan.Asleson
I'm trying to upgrade from FOP 0.20.1 to 0.20.3. I do my development within the VisualAge 3.5.3 IDE. When trying to create a PDF using FOP 0.20.3, I get the following error: java.lang.ExceptionInInitializerError: java.util.MissingResourceException: Can't find resource for base name

MissingResourceException

2002-05-07 Thread Ryan.Asleson
I'm trying to upgrade from FOP 0.20.1 to 0.20.3. I'm developing within the VisualAge for Java 3.5.3 IDE. When trying to create a PDF using FOP 0.20.3, I get the following error message: java.lang.ExceptionInInitializerError: java.util.MissingResourceException: Can't find resource for base

Tables in Inline Object

2002-05-07 Thread joseph berdat
Hello, I would like to have 2 tables side by side on a single page. +---+---+ +---+---+ | | | | | | | T1 | | T2 | | | | | | | +---+---+ +---+---+ I try to do this by using fo:inline but it doesn't work? Is there another solution? Thank!

X-Y Text positioning

2002-05-07 Thread John Bourke
Guys, Do you know if FOP explicitly supports absolute X-Y placement of data on a page, i.e. put this text right here, 6 cm down from the top left corner and 4 cm in from the left edge? John *** This email and any files

AW: X-Y Text positioning

2002-05-07 Thread Chaumette, Patrick
Hello John I use with FOP 0.20.3 the following: fo:static-content flow-name=xsl-region-before fo:block-container position=absolute top=4.5cm left=13cm width=7.2cm height=0.8cm fo:block border-style=solid border-color=redI am here/fo:block

step-by-step instructions how to print Chinese in PDF?

2002-05-07 Thread Argyn Kuketayev
I have to print documents with Chinese (and other languages). I couldn't find a clear instruction how to do it. Can anybody help? \fop-0.20.3\docs\examples\advanced folder didn't help me much. thanx, Argyn

sup with fo

2002-05-07 Thread Mathy V Arumugam
Hello, I have 5*10sup5/sup in my xml file and trying to do a superscript using the following xsl lines. Unfortunately, this does nothing. Any clue??? xsl:template match=//sup fo:inline baseline-shift=sup font-size=3px xsl:apply-templates/ /fo:inline /xsl:template Thanks Mathy

Re: MissingResourceException

2002-05-07 Thread Ryan.Asleson
I also get this error: java.lang.NoClassDefFoundError: XMLResourceDescriptor java.lang.Throwable(java.lang.String) java.lang.Error(java.lang.String) java.lang.LinkageError(java.lang.String) java.lang.NoClassDefFoundError(java.lang.String) void org.apache.fop.svg.SVGElementMapping.setupSVG()

Re: Basic-link problem in JSPs

2002-05-07 Thread J.Pietschmann
Ralf Steppacher wrote: If this comes directly from your original style sheet, you should better use matching precise templates instead of piping everything into a match-all and then use a choose in it. Is this just a matter of style or do exact templates perform better? A matter of

Re: DTD name retrieving

2002-05-07 Thread J.Pietschmann
Marie Steinberg wrote: The DTD name is the name of the DTD file, for example: 'foo.dtd'. is it the system identifier ? This is the system identifier. I used the following solution but it isn't run with fop: ** foo.xsl * ?xml version=1.0 ? xsl:stylesheet

Re: MissingResourceException

2002-05-07 Thread J.Pietschmann
[EMAIL PROTECTED] wrote: When trying to create a PDF using FOP 0.20.3, I get the following error: java.lang.ExceptionInInitializerError: java.util.MissingResourceException: Can't find resource for base name org.apache.batik.util.resources.XMLResourceDescriptor, locale en_US The PDF is simple.

Re: Tables in Inline Object

2002-05-07 Thread J.Pietschmann
joseph berdat wrote: I would like to have 2 tables side by side on a single page. +---+---+ +---+---+ | | | | | | | T1 | | T2 | | | | | | | +---+---+ +---+---+ I try to do this by using fo:inline but it doesn't work? It shouldn't. You would have to use

Re: step-by-step instructions how to print Chinese in PDF?

2002-05-07 Thread J.Pietschmann
Argyn Kuketayev wrote: I have to print documents with Chinese (and other languages). I couldn't find a clear instruction how to do it. Find a font containing glyphs for your script. Configure it for use by FOP as describet in docs/html-docs/fonts.html Use an XML capable editor which allows you

Re: sup with fo

2002-05-07 Thread Mathy V Arumugam
Hmmm.. I have tried baselin-shift to super. I think the problem is with my xml file :). Instead of having supertag in xml, I have the entity representation of the tag.. meaning I have lt;supergt;. So, by doing the search for the tag super does not help. Any advice Thanks J.Pietschmann

xml/xsl pdf servlet output problem

2002-05-08 Thread Rich Schiavi - ISDI.NET
i'm using the SimpleServlet which was posted prior (and attached). it works great with a .fo http://localhost:8088/fop/fop?fo=c:/dev/tmp/table.fo the trouble i'm seeing is this. using a very simple .xsl and .xml, the output is not getting sent to the outputstream, *however* the PDF is getting

xml-pdf servlet output timeout

2002-05-08 Thread bonsigno
Hi, I had writen a servlet who generates a dynamic PDF document with a long elaboration time (some minutes). In the mean time the client browser that had made the servlet request, shows the errors HTTP 500 - Internal server error or Unable to find the server or DNS error. The servlet elaboration

RE: xml/xsl pdf servlet output problem

2002-05-08 Thread Peter Jacobs
Does it work in Netscape? It is probably the very annoying bug in Internet Explorer there is a lot of information in the fop-user archives, e.g.: http://marc.theaimsgroup.com/?l=fop-userm=101898344218255w=2 http://marc.theaimsgroup.com/?l=fop-userm=101900052502730w=2 You could try:

first page must have no page number

2002-05-08 Thread Eric Smith
I tried implementing this with two page-master's but failed- could someone please pass me the code to implement this. thanx -- Eric Smith

RE: xml-pdf servlet output timeout

2002-05-08 Thread Wright Neiland (app1nlw)
Perhaps not a direct solution - but for large documents I try to kick off the process asyncronously with JMS. I have also found- due to unreliable browser rendering of pdf documents that storing the generated document as a file in a temporary directory works well. Because there is an asyncronous

import/include

2002-05-08 Thread Balaji Loganathan
Hi, Ofcourse this is a XSL question.Does using import/include increases the processing speed. I'm using Xalan and Fop. I tried importing a xsl with 43 variables instead of declaring them inside the main xsl.I didn't see any processing speed difference,I used my stop watch :-) to chk it.

Re: import/include

2002-05-08 Thread Oleg Tkachenko
Balaji Loganathan wrote: Ofcourse this is a XSL question. I beleive xsl-list maillist (http://www.mulberrytech.com/xsl/xsl-list) is a better place for xslt-related questions. Does using import/include increases the processing speed. I don't think so, these facilities (like in others

Page Borders

2002-05-08 Thread John Bourke
Guys have any of you used page borders with FOP, I can't get it to render them yet if I try my XSL-FO in Antenna House's evaluation package they are rendered as you would expect. Does FOP not implement this yet, I'm using 0.20.3 John

Out of Memory Error !!

2002-05-08 Thread Abhijat Upadhyay
hi there !! i am getting out of memory error when i try to process a very large document containing a single fo:page-sequence tag a single fo:table tag. i have gone thru the mailing list looking for some solution to this problem but though the problems are similar i am not able to figure out

Newbie question - underlining blank spaces.

2002-05-08 Thread Jack Donohue
Hi all. Is there any way to force FOP to underline a string, even if it is composed entirely of blank characters? I'm using fop-0.20.3, if that matters. I have a template which produces an underlined, fixed-length string in my pdf doc. It pads the string with spaces if necessary to make it the

Re: Out of Memory Error !!

2002-05-08 Thread Naveen_Rojanala
Hi Abhijit, Looks like it might be in a recursive mode or something. I am not totally aware of this kind or problem ,but how big is your document ? Are you using the combination of xml and xsl filer or just the fo file to print out in PDF? naveen

ANN: TIFFRenderer for FOP

2002-05-08 Thread Oleg Tkachenko
Hello! For the people interested in faxing using xsl-fo and FOP I'm happy to announce TIFFRenderer for FOP. The homepage is at http://www.tkachenko.com/fop/tiffrenderer.html and here is some info: TIFFRenderer for FOP, version 0.9 TIFFRenderer is a small Java library extending Apache's FOP by

fop-0.20.3 Don't know what to do with error

2002-05-08 Thread DuCharme, Bob (LNG)
When I call the fop.bat that comes with fop-0.20.3 using a very simple hello world formatting object file in the same directory as fop.bat, I get an error that says (in its entirety) Don't know what to do with no matter what parameters I supply. This is under Win98, and the same fo input file

PDF embedding

2002-05-08 Thread Patrick Lanphier
What's the cleanest way to embedded a PDF inside a PDF file using FOP? Thanks much for the help. Patrick Lanphier The Artemis Group http://www.artemisgroup.com phone: 814-235-0444 fax: 800-582-9710

Re: PDF embedding

2002-05-08 Thread J.Pietschmann
Patrick Lanphier wrote: What's the cleanest way to embedded a PDF inside a PDF file using FOP? You'll probably have to implement an extension element or an image handler. Alternatively, try iText http://www.lowagie.com to mix arbitrary PDF, including PDF generated by FOP and your existing PDF.

Re: xml-pdf servlet output timeout

2002-05-08 Thread J.Pietschmann
bonsigno wrote: Hi, I had writen a servlet who generates a dynamic PDF document with a long elaboration time (some minutes). In the mean time the client browser that had made the servlet request, shows the errors HTTP 500 - Internal server error or Unable to find the server or DNS error. The

Re: Java 1.1.x

2002-05-08 Thread Kendall Adkins
Hello Everyone, This is for those of you who are interested in running FOP under Java 1.1.8. I am successfully using version 0.17 in a servlet running on a Domino R5 Server. It was really not that hard to get going. The only real difficulty was in conforming to the version of FO-XML supported

Re: File seems to be kept open!

2002-05-08 Thread J.Pietschmann
Mirko Sertic wrote: After the renderer has done its work, i want to delete my temp files. I can delete every temp file except the image files!!! (the java java.io.File.delete() method gives a false as return value, so the the file is not deleted and is still alive in my temp dir!!!). The files

Re: Newbie question - underlining blank spaces.

2002-05-08 Thread J.Pietschmann
Jack Donohue wrote: Is there any way to force FOP to underline a string, even if it is composed entirely of blank characters? I'm using fop-0.20.3, if that matters. Try something which results in fo:inline text-decoration=underline#x005F; #160;/fo:inline The first is the

Re: fop-0.20.3 Don't know what to do with error

2002-05-08 Thread J.Pietschmann
DuCharme, Bob (LNG) wrote: When I call the fop.bat that comes with fop-0.20.3 using a very simple hello world formatting object file in the same directory as fop.bat, I get an error that says (in its entirety) Don't know what to do with no matter what parameters I supply. This is under Win98, and

Re: first page must have no page number

2002-05-08 Thread J.Pietschmann
Eric Smith wrote: I tried implementing this with two page-master's but failed- could someone please pass me the code to implement this. ?xml version=1.0 encoding=iso-8859-1? fo:root xmlns:fo=http://www.w3.org/1999/XSL/Format; fo:layout-master-set fo:simple-page-master master-name=regular

turn off logging

2002-05-08 Thread Rich Schiavi - ISDI.NET
I attempted to turn off logging by adding the following to my servlet init routing: MessageHandler.setOutputMethod(MessageHandler.NONE) However, I still get all this stuff. I've search and trying to figure out how to configure the servlet/webapp to not print all this information. Is there a

what are the other third party softwares needed ?

2002-05-09 Thread Naveen_Rojanala
To Run the FOP and see the output in PDF through IE or Netscape browser. Jar files from FOP lib directory, Adobe Acrobat Reader(is read only O.K, and which version?), Plugins for IE and Netscape(Isn't default when you install Adobe's Acrobat Reader?),Java 1.3(I am having this version).. Anything

Re: what are the other third party softwares needed ?

2002-05-09 Thread Peter B. West
Seconded. Peter [EMAIL PROTECTED] wrote: P.S: A special thanks to J.Pietschmann for all his time and help with various topics.

RE: fop-0.20.3 Don't know what to do with error

2002-05-09 Thread DuCharme, Bob (LNG)
You could help by running the following test program with one or two arbitrary parameters and post the output. Here you go... C:\tempjava TestC red green blue 72 65 64 67 72 65 65 6E 62 6C 75 65 C:\tempjava TestC aaa aa a 61 61 61 61 61 61 Why wouldn't I have a problem using Fop-0.18.1-DEV if

Re: Out of Memory Error !!

2002-05-09 Thread Jeremias Maerki
The problem is probably your page-number-citation that looks up the last page. This is well known to have impact on memory usage, because FOP can render the first page only after the last page has been setup. It has to wait until it knows how many pages your page-sequence has. Take out the

Page Numbering when using multiple fo:page-squence tags

2002-05-09 Thread Abhijat Upadhyay
hi there!! if i am using mutiple page sequence (these are generated thru an iterator like using xsl:for-each tag, phisically there's just one fo:page-sequence tag)... then i am not able to show Page X of Y correctly in my page... could someone give a solution for this

Page X of Y Problem

2002-05-09 Thread Abhijat Upadhyay
hello FOPians !! i am having multiple page-sequence tags(being generated thru xsl:for-each tag) in my xsl... the problem is that i can get the total number of pages in my PDF but the current page number gets repeated after a few pages (i.e. when the page-sequence ends.) For example: - if each

Newbie - kernning problem

2002-05-09 Thread Bill Collins
Hi all, I'm having a kerning problem with text in fop. I've tried to use font-stretch and word-spacing to kern some text to exactly match a pre-printed form. Both give a not implemeted yet warning. Can anyone tell me how to kern text using FOP 0.20.3? Thanks, Bill

FOP and keep- * functions

2002-05-09 Thread Michelle Popovits
I have read in various places that the keep- functions are not implemented in Apache fop. Is this slated to be in an upcoming release? If so, any idea when this might be available to try? Are there any reasonable work-arounds for different situations? Example Scenarios: a) In a table row when

FOP Jars

2002-05-09 Thread Gandara, Salvidor
Two questions: 1) The fop.bat file references the jar: lib\jimi-1.0.jar but I could not find this jar in the lib directory. 2) Are all of the jars referenced in the fop.bat, except the jimi-1.0.jar, required? Thank you in advance for your help, Sal Gandara eBuilt, Inc. 3540 Howard Way Costa

RE: FOP Jars

2002-05-09 Thread Jose Hernandez
Here is the jar file ... -Original Message- From: Gandara, Salvidor [mailto:[EMAIL PROTECTED] Sent: Thursday, May 09, 2002 02:38 p.m. To: '[EMAIL PROTECTED]' Subject: FOP Jars Two questions: 1) The fop.bat file references the jar: lib\jimi-1.0.jar but I could not find this jar in

Re: FOP Jars

2002-05-09 Thread Jeff_Mitchell
Sal- jimi-1.0.jar isn't necessary to run FOP, but if you want it, I'd suggest downloading it from Sun. It's not included with the FOP distribution because of licensing issues. I believe those same licensing issues would preclude people from sending the file around via e-mail, too, but IANAL.

RE: step-by-step instructions how to print Chinese in PDF?

2002-05-09 Thread Argyn Kuketayev
-Original Message- From: J.Pietschmann [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 07, 2002 5:02 PM To: [EMAIL PROTECTED] Subject: Re: step-by-step instructions how to print Chinese in PDF? Argyn Kuketayev wrote: I have to print documents with Chinese (and other

Q: Progress of implementing new features?

2002-05-10 Thread fop user
Hi, can someone tell me what the progress is in the implementation of features since the release of FOP0.20.3? Tnx in advance.

incorporating static pdf pages?

2002-05-10 Thread Michelle Popovits
Is it possible in xsl-fo when generating a dynamic pdf to add static pdf pages that are contained in a separate pdf file into the final pdf? For example, 2 pages from a pdf file at start of document + dynamically generated xsl-fo + 2 pages from pdf file at end of document TIA, Michelle

<    8   9   10   11   12   13   14   15   16   17   >