Re: Concurrent modification exception getting an instance of ICC_Profile

2011-02-01 Thread Julien Aymé
Hi Andreas, You're right, I had forgotten that this was an AWT issue, and we should be the one to fix the issue. So thanks for the patch :-) Julien 2011/2/1 Andreas Delmelle andreas.delme...@telenet.be: On 31 Jan 2011, at 10:38, Julien Aymé wrote: Hi Alexios, Julien, 2011/1/31 Alexios

Re: Concurrent modification exception getting an instance of ICC_Profile

2011-01-31 Thread Julien Aymé
It seems that you just found out a race condition in ProfileDeferralMgr. (A quick view on any decompiler show that a race condition can occur when : - Thread A enters registerDeferral, deferring is still true, thread A checks !deffering -OK - Thread B enters activateProfiles, set deferring to

Re: font-substitution -FOP1.0

2010-11-04 Thread Julien Aymé
Hi, I've had such a bug once, which has not been fixed in trunk yet: FOP Bug #49301 https://issues.apache.org/bugzilla/show_bug.cgi?id=49301 There is an error in code which prevents user from finding a Font with weight: 700. HTH, Regards, Julien 2010/11/4 Varra, Mamatha mv...@allstate.com:

Re: FOP Output Stream

2010-09-07 Thread Julien Aymé
calling cloneAsClientObject. http://www.basis.com/onlinedocs/documentation/sysguimethods5/bbjapi_cloneasclientobject.htm -Original Message- From: Julien Aymé [mailto:julien.a...@gmail.com] Sent: Thursday, September 02, 2010 8:39 AM To: fop-users@xmlgraphics.apache.org Subject: Re

Re: FOP Output Stream

2010-09-02 Thread Julien Aymé
Hello, How do you send the generated output from the server to the client? If you're sending bytes through a Socket, then a SocketOutputStream is the best way (use Socket#getOutputStream). If you're saving the bytes into a temp file, then you could use a FileOutputStream. (Both of them must be

Re: unable to use afp:resource-level=external for fo:external-graphic

2010-08-17 Thread Julien Aymé
Hi, Could you provide the full stack trace, so that we can investigate the code? Thanks, Julien 2010/8/17 Mrutyunjay Sahasrabudhe mruts...@techmahindra.com: Hi, I am using FOP 1.0 version. I am trying to use the afp:resource-level=external for fo:external-graphic but getting an exception

Re: unable to use afp:resource-level=external for fo:external-graphic

2010-08-17 Thread Julien Aymé
it = pathResourceGroupMap.entrySet().iterator(); should be  Iterator it = pathResourceGroupMap.values().iterator(); I think I fixed this is a patch I submitted recently.  Let me check.. Pete On Tue, Aug 17, 2010 at 11:24 AM, Julien Aymé julien.a...@gmail.com wrote: Hi, Could you provide the full stack

Re: Please delete my messages of today on mailing list

2010-08-17 Thread Julien Aymé
Hello Andrejus, Unfortunately, I don't think this is possible (this mailing list redirects all its mail to each user who subscribed it). You can just apologize to the mailing list and tell people to ignore the noise. Regards, Julien 2010/8/17 Andrejus Chaliapinas a.chaliapi...@infosana.com:

Re:

2010-08-17 Thread Julien Aymé
Andrejus sent two mails to the wrong address (fop-users mailing list), so please just ignore them. Regards, Julien 2010/8/17 Eric Douglas edoug...@blockhouse.com: Please be more specific. From: Andrejus Chaliapinas [mailto:a.chaliapi...@infosana.com] Sent:

Re: Please delete my messages of today on mailing list

2010-08-17 Thread Julien Aymé
messages from these archives. 2010/8/17 Eric Douglas edoug...@blockhouse.com: But does it save all mail sent to the list in an archive? -Original Message- From: Julien Aymé [mailto:julien.a...@gmail.com] Sent: Tuesday, August 17, 2010 8:14 AM To: fop-users@xmlgraphics.apache.org

Re: Minimising FOP footprint...

2010-07-26 Thread Julien Aymé
2010/7/26 Jeremias Maerki d...@jeremias-maerki.ch: On 24.07.2010 01:13:01 Bernard Giannetti wrote: Hi, I've noticed there's a lot of 3rd party JAR files bundled with FOP 1.0, notably: avalon-framework-4.2.0.jar batik-all-1.7.jar commons-io-1.3.1.jar commons-logging-1.0.4.jar

Re: [fop 0.95] OutOfMemory with big font

2010-05-13 Thread Julien Aymé
Hi, fop internally loads the font in memory, so if you use a huge font file, as you do in your example, you may have OutOfMemoryError, since the file does not fit into the available memory. Did you try rising your max JVM memory ? Try to add the following argument in your launcher, or a higher