cvs commit: xml-fop/lib buildtools.jar

2001-07-06 Thread keiron
keiron 01/07/05 23:58:01 Modified:.build.xml docs/xml-docs/fop testing.xml src/org/apache/fop/tools/anttasks RunTest.java lib buildtools.jar Log: added support for easily using w3c testsuite for build target test

Problem with embedding fop

2001-07-06 Thread adel ben
Hi all, I've tryed to embed FOP-0.18.1DEV with a servlet so that to render (xml,xsl) files into PDF. I am using Tomcat 3.2.1 as web container. Unfortunately, the call of the servlet works from Netscape Navigator and renders PDF. However, it doesn't work from Internet Explorer. in fact with IE,

Font Metric file from ttf file??

2001-07-06 Thread rajeev nair
hello i have the ttf file and was trying to make fontmetric file using TTFReader class which is in fop.jar file.I was trying with java -cp fop.jar java org.apache.fop.fonts.apps.TTFReader C:\fonts\SHIVN___.ttf C:\fonts\SHIVN___.ttf shiva.xml but error no class found is obtaining.But i can see

RE: running from servlet, is buffering needed?

2001-07-06 Thread James Telfer
FWIW, in my opinion the overriding concern is that Fop should be able to run in a multi-threaded environment. As such, considering that this is a core feature, this should be fixed. Thanks, JT -Original Message- From: Seshadri G.K. [mailto:[EMAIL PROTECTED]] Sent: Saturday, July 07,

Re: Problem with embedding fop

2001-07-06 Thread Bjoern Martin
Hi all, I've tryed to embed FOP-0.18.1DEV with a servlet so that to render (xml,xsl) files into PDF. I am using Tomcat 3.2.1 as web container. Unfortunately, the call of the servlet works from Netscape Navigator and renders PDF. However, it doesn't work from Internet Explorer. in fact with

RE: Font Metric file from ttf file??

2001-07-06 Thread Mori, Donatella (AFIS)
Rajiv, Please try with the following bat file after including the required jar file in the FOP running directory. -Original Message- From: rajeev nair [mailto:[EMAIL PROTECTED]] Sent: Friday, July 06, 2001 9:40 AM To: [EMAIL PROTECTED] Subject: Font Metric file from ttf file?? hello i

Static-content vs. flow (newbee question)

2001-07-06 Thread Mads Soerensen - Interact
Hi I have an SVG image which I would like to use as background image for all pages in the pdf-fileI am generating. Reading the previous postings in this list, it is my understanding that background image is not yet supported, is this correct? Instead a previous posting suggested to

Re: XSLTInputHandler not doing its job??

2001-07-06 Thread Abdul Wahab
Hi Gustavo, Karen and All! I am also using the same coding as how u code(below) to covert from XML to PDF using XSL. But I am getting No Such MethodError exception eventhough the method is existed in class file. Could u please help me to solve this problem. java.lang.NoSuchMethodError

[Bug 2475] New: - Borders don't appear to work in fo:table-row

2001-07-06 Thread bugzilla
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=2475 *** shadow/2475 Fri Jul 6 05:14:23 2001 --- shadow/2475.tmp.15120 Fri Jul 6 05:14:24 2001 *** *** 0 --- 1,35 + ++ + | Borders don't

svg/PDFGraphics2D.java between version 1.7 and 1.8

2001-07-06 Thread Thieler Jens
Hi, I'm a great fan of org.apache.svg.PDFTranscoder or rather org.apache.svg.PDFDocumentGraphics2D. PDFDocumentGraphics2D initializes with super(textAsShapes) So the FontState in the superclass PDFGraphics2D is not initialized. After the augmentation of method PDFGraphics2D.drawString(...)

Re: running from servlet, is buffering needed?

2001-07-06 Thread Dave Frankson
I use FOP solely from a servlet to handle web-based reporting. Our company has a web-based student information system for k-12 schools. Currently we are using Access for reporting, but would like to switch to FO. We have already written everything to bulk print 3000 student report cards, but

overflow-paginate

2001-07-06 Thread Robyn MacDuff
I am looking for help with overflow-paginate function of XSL. I have data elements that overflow the block sizes and overflow-paginate=8.00in doesn't seem to be workning for me. Robyn MacDuff [EMAIL PROTECTED] - To

Need Working Sample

2001-07-06 Thread Jim Urban
Hi, I am new to FOP. I have a servlet which dynamically generates XML. I need to apply an XSL stylesheet containing FO tags to generate a FO version of the XML and then I need to run this FO version of the XML through FOP (or Driver) so the servlet can return a dynamically created PDF to the

Re: Need Working Sample

2001-07-06 Thread Cyril Rognon
There is a FOP servlet example in the distribution of FOP : /docs/examples/embedding/FopServlet.java I think it will answer all the beginners questions. See the example section on the FOP site to see all pre-answered question you might have in your beginning journey. (starting with

RE: Need Working Sample

2001-07-06 Thread Wolf Gustavo (SGC-EXT)
Hi Jim, I have exactly the same problem, and I've just found a non elegant, working solution: I generate my XML file, and then call the command line Fop from within my servlet: Runtime.getRuntime().exec(new String[]{java.exe, -cp,

AW: Need Working Sample

2001-07-06 Thread Erik Rehrmann
Hi Gustavo, the following works great: ByteArrayOutputStream out = new ByteArrayOutputStream(); Driver driver = new Driver(); driver.setRenderer(Driver.RENDER_PDF); InputHandler inputHandler = new XSLTInputHandler(xmlFile, xslFile);

RE: Need Working Sample

2001-07-06 Thread Jim Urban
Sorry, but this does not work for two reasons. 1. The XML does NOT exist on disk! It is in memory only, and writing it to disk is NOT an option. 2. This is a high traffic web application. Starting a new JVM to process FOP is too costly. There must be a way for this FOP thing to read raw

RE: Need Working Sample

2001-07-06 Thread Wolf Gustavo (SGC-EXT)
Hi Erik, I have tried your stuff, but it still gives me the same problem i have since two days after I try to instantiate the parser: javax.xml.transform.TransformerConfigurationException: Namespace not supported by SAXParser Error msg: null At the risk of looking abusive, could

AW: Need Working Sample

2001-07-06 Thread Erik Rehrmann
Jim, don't be upset! Please take into account that the mails arrived not right on time when you sent another mail! I sent my mail BEFORE I saw you're working with memory streams! It's is possible to handle strings as stream. Have a look at the streams bean of alphaworks (streams.jar)

RE: Need Working Sample

2001-07-06 Thread Steven Lane
The FopServlet reads a .fo file. This is of no use to me. I will dyamically generate XML contianing only data. This XML will be in a StringBuffer. I first need to apply an XSL sytle sheet to this StringBuffer, generating a new XML stream (IN MEMORY). This new (IN MEMORY) XML stream then

About testing

2001-07-06 Thread Karen Lease
Hi Keiron, It looks like you are the testing guru. Thanks for taking the initiative on this; I agree that it's crucial. I've finally got around to looking at this in more detail, as I'm trying to add some good cases for tables. I have one problem and one question. Problem: For some reason,

Re: running from servlet, is buffering needed?

2001-07-06 Thread Chetan Vig
No, seshadri. Can't I call FOP from the servlet too. need the memory buffer for the servlet...my reports are approx. 300-500 pages and currently I have set my XMX to 384Mhowever, I would like to avoid doing that to my app. server. -Chetan Dave Frankson wrote: I use FOP solely from a

Re: About testing

2001-07-06 Thread Arved Sandstrom
At 11:33 PM 7/6/01 +0200, Karen Lease wrote: Question: I see that the XML rendering doesn't have lots of traits, no Area Container positioning for example, no line-height information etc. Is it a reasonable thing to enhance the output format to include (eventually) all the traits which are

[Bug 2429] - Incorrect handeling of fo:leader attribute leader-pattern

2001-07-06 Thread bugzilla
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=2429 *** shadow/2429 Tue Jul 3 00:26:23 2001 --- shadow/2429.tmp.21975 Fri Jul 6 17:10:12 2001 *** *** 2,9 | Incorrect handeling of fo:leader attribute leader-pattern |