Thanks for that, it has improved my debugging but it seems to be implying an
issue with FOP

java.lang.NoSuchMethodError:
org.apache.commons.io.filefilter.FileFilterUtils.fileFileFilter()Lorg/apache
/commons/io/filefilter/IOFileFilter;
        at
org.apache.fop.fonts.autodetect.FontFileFinder.getFileFilter(FontFileFinder.
java:79)
        at
org.apache.fop.fonts.autodetect.FontFileFinder.<init>(FontFileFinder.java:52
)
        at org.apache.fop.fonts.FontDetector.detect(FontDetector.java:69)
        at
org.apache.fop.fonts.FontInfoConfigurator.configure(FontInfoConfigurator.jav
a:92)

Kindest regards


Theresa Forster
Senior Software Developer

-----Original Message-----
From: Andreas L. Delmelle [mailto:andreas.delme...@telenet.be] 
Sent: 03 June 2011 21:54
To: fop-users@xmlgraphics.apache.org
Subject: Re: Hair ripping time

On 03 Jun 2011, at 17:27, Theresa Jayne Forster wrote:

Hi Theresa

> This makes no sense its crashing out with no error on this line
> Fop fop = fopFactory.newFop(MimeConstants.MIME_PDF,useragent,out);
> And it jumps straight to 
>          System.out.print("*");
<snip />
>        }  catch (TransformerConfigurationException ex) {
>            ex.printStackTrace();
>        } catch (TransformerException ex) {
>            ex.printStackTrace();
>        } catch (FOPException ex) {
>            ex.printStackTrace();
>        } catch (FileNotFoundException ex) {
>            ex.printStackTrace();
>       } catch (IOException ex) {
>            ex.printStackTrace();
>        } catch (Exception ex) {
>            ex.printStackTrace();

Not as a general practice, but if all else fails:

        } catch (Throwable t) {
            t.printStackTrace();
        }

Hopefully, that will reveal what is happening here.


Regards

Andreas
---

---------------------------------------------------------------------
To unsubscribe, e-mail: fop-users-unsubscr...@xmlgraphics.apache.org
For additional commands, e-mail: fop-users-h...@xmlgraphics.apache.org

-----
No virus found in this message.
Checked by AVG - www.avg.com
Version: 10.0.1375 / Virus Database: 1509/3662 - Release Date: 05/26/11
Internal Virus Database is out of date.



---------------------------------------------------------------------
To unsubscribe, e-mail: fop-users-unsubscr...@xmlgraphics.apache.org
For additional commands, e-mail: fop-users-h...@xmlgraphics.apache.org

Reply via email to