VAGNER Rodolphe wrote:
I try to embed FOP in a JSP server (tomcat 3.3).
...
Raison principale:
org.apache.fop.apps.FOPException: ..
at org.apache.fop.apps.Driver.render(Driver.java:507)

Line 507 rethrows an IOException. Probably because of:
InputSource("file://../fop-0.20.5rc3a/eadsCcr.fo"),
                     ^^^^
this is not an URL which could possibly point to something. Check
the relevant RFC, IIRC
 http://www.rfc-editor.org/rfc/rfc2396.txt

Try
 InputSource(new FileINputStream("../fop-0.20.5rc3a/eadsCcr.fo"))
or use an absolute URL (recommended).

J.Pietschmann


--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to