Re: Multithreaded failure

2002-04-08 Thread Paul . Hussein
) Regards Paul. David B. Bitton [EMAIL PROTECTED] on 05/04/2002 00:31:38 Please respond to [EMAIL PROTECTED] To: [EMAIL PROTECTED] cc: Subject: Re: Multithreaded failure I moved the creation (and destruction) of the Driver object inside the method. Also I had forgotten

Re: Multithreaded failure

2002-04-08 Thread Christian Geisert
[EMAIL PROTECTED] wrote: Thats not the only problem. I get problems when loading an image when multithreaded. As previously posted. If I could build the darn thing, I might look into fixing it. Have you tried with jdk1.3 ? Maybe './build.sh -debug' gives some more info. Paul.

Re: Multithreaded failure

2002-04-05 Thread J.Pietschmann
Scott Moore wrote: org.apache.fop.configuration.Configuration.put(strokeSVGText, new Boolean(false)); Nitpick: there is a predefined Boolean.FALSE :-) J.Pietschmann - To unsubscribe, e-mail: [EMAIL PROTECTED] For

RE: Multithreaded failure

2002-04-04 Thread Scott Moore
Why are you reading the user configuration more than once? In my servlet, which is multithreaded, I read the user configuration file once upon init. I have no problems (except the occasional image error, which I catch and regenerate the PDF when it happens) with concurrent PDF generation using

Re: Multithreaded failure

2002-04-04 Thread David B. Bitton
] www.codenoevil.com Code Made Fresh DailyT - Original Message - From: Scott Moore [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, April 04, 2002 4:43 PM Subject: RE: Multithreaded failure Why are you reading the user configuration more than once? In my servlet, which is multithreaded, I

RE: Multithreaded failure

2002-04-04 Thread Scott Moore
); } driver.setLogger(log); driver.setRenderer(Driver.RENDER_PDF); driver.run(); pdf.flush(); } HTH, Scott -Original Message- From: David B. Bitton [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 04, 2002 4:58 PM To: [EMAIL PROTECTED] Subject: Re: Multithreaded failure Simply because

Re: Multithreaded failure

2002-04-04 Thread David B. Bitton
] To: [EMAIL PROTECTED] Sent: Thursday, April 04, 2002 5:23 PM Subject: RE: Multithreaded failure Upon init (once in the servlet) // Gotta configure FOP to know where the base directory is. Otherwise // it will generate errors. Add a trailing slash so we can use relative // paths