Re: Auto-sized tables - beginner question

2003-07-11 Thread J.Pietschmann
Bonnie Yelverton wrote: > So how do I change "fixed" to "relative", By specifying table-layout="relative" on the table, but this wont have any effect because only "fixed" is implemented. > and what is IPD, Inline progression dimension, or vulgo "width" for the average westerner. > and where do I >

Re: Rending PDF from a secure site

2003-07-11 Thread J.Pietschmann
Clay Leeds wrote: I believe that even such dependencies the DTD would need to be on the secure server. I would have to assume SSL connections were taken into account when the powers that be implemented the XML Spec for name spaces. ;-p Namespaces aren't even remotely related with seecure communi

Re: hand over dynamic generated images to fop

2003-07-11 Thread J.Pietschmann
Alexander Krebs wrote: I want to include an image (JPEG) in fop which is dynamically generated by a java-class. I don't want to store the image somewhere in the filesystem or generate it with a servlet. Using a servlet or a temporary file are still the most promising options. Other approaches are

Re: FW: "[ERROR]: >" resulting in "Exception in thread "main" java.lang.OutOfMemoryError <>"

2003-07-11 Thread J.Pietschmann
Kenny Vandenbroucke wrote: Exception in thread "main" java.lang.OutOfMemoryError <> Have a look at http://xml.apache.org/fop/faq.html#OutOfMemoryException J.Pietschmann - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional c

Auto-sized tables - beginner question

2003-07-11 Thread Bonnie Yelverton
I am trying to create tables using an xsl-fo and an xml that has varying sized tables of 2-3 columns. I figured if I create 3 columns and specify the table-layout as "auto" it would do the trick, as in:

RE: External graphic referencing within a servlet

2003-07-11 Thread Victor Mote
Clay Leeds wrote (a long time ago, May 21, 2003 to be exact): > On 5/21/2003 9:18 AM, Jeremias Maerki wrote: > > You may need to the the base directory/URL. See: > > http://xml.apache.org/fop/embedding.html#config-internal > > > > But I think your src attribute is wrong. It should be something lik

RE: Questions about memory

2003-07-11 Thread Victor Mote
Symon ([EMAIL PROTECTED]) wrote: > So here's come the first stupid question : is there a way to make FOP swap > on hard drive for big document generation (we don't care about the time it > takes to generate our catalogs), if not, can you explain me why ? Do you > know if XEP can swap on drive ? N

RE: Adobe Reader 6.0 problem

2003-07-11 Thread Koes, Derrick
The following is my URL (the xml is abbreviated). /dora/MediaContentHandler?type=preview&xml=%3CList%3E%3CRepo...%dC%2FList%3E &dummy=dummy.pdf Using Naviscope, I "sniffed" the HTTP response header. HTTP/1.0 200 Date: Fri, 11 Jul 2003 17:21:18 GMT Server: Apache/2.0.45 (Win32) mod_ssl/2.0.45 O

Re: Adobe Reader 6.0 problem

2003-07-11 Thread Clay Leeds
On 7/11/2003 9:57 AM, Koes, Derrick wrote: Content type is set to application/pdf and the content length is set (which HTTPServlet will interpret as a Keep-Alive connection). However, that's all that is set in the response header. Derrick Can you confirm it's not related to this FAQ: http://x

RE: Adobe Reader 6.0 problem

2003-07-11 Thread Koes, Derrick
Thanks Claudio and Celine. I think neither of these are my problem. My servlet is quite similar to the FopServlet.java that comes with the binary distribution examples.   Content type is set to application/pdf and the content length is set (which HTTPServlet will interpret as a Keep-Al

Questions about memory

2003-07-11 Thread s-oualid
Hi, I work for a french TV Channel (so excuse my english) and we use FOP to generate catalogs of our programs. Until right now, we had no memory problem because we generated catalog of 300~400 pages on a 1Go RAM server. But we hav to generate a big catalog (more than 1 000 pages) and FOP throws a O

RE: Rending PDF from a secure site

2003-07-11 Thread Jeremy Nix
Well, I found that I have no references in my xml or my xsl to a dtd. I do have namespaces which refer to nonsecure sites, but to my understanding namespaces are just a reference name and therefore wouldn't be considered when determining secure/nonsecure content. I tried making the namespaces htt

Re: Rending PDF from a secure site

2003-07-11 Thread Clay Leeds
On 7/11/2003 9:04 AM, Jeremy Nix wrote: Okay, well I can understand if it is considering the DTD when determing whether the content is secure. I guess I didn't realized that the dtd information ff the rendering xsl document would be considered. I do have an image on the page, but the image is com

Re: Adobe Reader 6.0 problem

2003-07-11 Thread Claudio De Bernardi
I don't if the problem is similar to that I experienced some time ago. I had problem with Adobe Acrobat Plugin and Explorer (note that Netscape plugin and Acrobat window didn't have any problem). With some pdf file (not all) streamed from servlet the only result I get was a blank page. Sniffing

RE: Rending PDF from a secure site

2003-07-11 Thread Jeremy Nix
Okay, well I can understand if it is considering the DTD when determing whether the content is secure. I guess I didn't realized that the dtd information ff the rendering xsl document would be considered. I do have an image on the page, but the image is coming from this secure site as well.

Re: Rending PDF from a secure site

2003-07-11 Thread Clay Leeds
On 7/11/2003 8:47 AM, Clay Leeds wrote: Are all active processes running on the same, secured server? If FOP, some dependency such as a logo/img or stream, or some other process is running on a separate server, that may be enough to trigger the 'non-secure' switch. HTH! I believe that even such

Re: Rending PDF from a secure site

2003-07-11 Thread Clay Leeds
On 7/11/2003 8:36 AM, Jeremy Nix wrote: I've got a servlet that I am using to perform PDF transformations. Recently, we secured this web application with a certificate. Now, everytime the servlet renders the pdf I get a prompt "This page contains both secure and nonsecure items. Do you want t

Rending PDF from a secure site

2003-07-11 Thread Jeremy Nix
Title: Rending PDF from a secure site I've got a servlet that I am using to perform PDF transformations.  Recently, we secured this web application with a certificate.  Now, everytime the servlet renders the pdf I get a prompt "This page contains both secure and nonsecure items.  Do you want

SVG-Scaling

2003-07-11 Thread Martin Regner
Hello, since i needed svg-scaling for embedding Logos in my PDF i took a look in the sources (0.20.5rc3a). When i figured out where the svg's are rendered i could implement this feature with very small changes. My question now is: if it is that simple, why wasn't it implemented already. As far e

RE: Adobe Reader 6.0 problem

2003-07-11 Thread Celine Murphy
Hi Derrick,   I was having a similar problem recently and i fixed it my changing my header settings in the response. They were Pragma, no-cache and Cache Control, no-cache. I changed them to use an expiry date instead. I hope this helps.   Celine -Original Message-From: Koes, Derric

Adobe Reader 6.0 problem

2003-07-11 Thread Koes, Derrick
I've already posted this to the Adobe forum, but I thought it couldn't hurt posting it here too.   Adobe Reader 6.0 causes Internet Explorer to "encounter a problem" opening a pdf (streamed from a servlet) on some occasions.  Changing the preference setting to open in an acrobat window wi

RE: "[ERROR]: >" resulting in "Exception in thread "main" java.l ang.OutOfMemoryError <>"

2003-07-11 Thread Rob Stote
Title: RE: "[ERROR]: >" resulting in "Exception in thread "main" java.lang.OutOfMemoryError <>" You are able to produce the 1000 page PDF on the Linux box ? If so, double check the HEAP settings on your Linux machine make sure the Linux, and Windows box match. Also there is a really good

hand over dynamic generated images to fop

2003-07-11 Thread Alexander Krebs
Hi, I want to include an image (JPEG) in fop which is dynamically generated by a java-class. I don't want to store the image somewhere in the filesystem or generate it with a servlet. The best solution for me would be to hand it over somehow to fop. I'm new to fop and read about 3 possibillities

Henrik Olsson/IRD/Intentia is out of the office.

2003-07-11 Thread Henrik Olsson
I will be out of the office starting 2003-07-11 and will not return until 2003-08-11. I am on vacation, I will respond to your message when I return. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail:

FW: "[ERROR]: >" resulting in "Exception in thread "main" java.lang.OutOfMemoryError <>"

2003-07-11 Thread Kenny Vandenbroucke
> Hello, > > When I try to convert a a complex xml-file (steerfile which refers to other > xml-files) to a pdf-file the first step works : the conversion to a fo-file. > But in the second step, the conversion from a fo-file to a pdf-file I get > several errors "[ERROR]: >". When I limit the num