Re: Problem with FOP and Schemas

2004-11-04 Thread J.Pietschmann
Jon Steeves wrote: When I run FOP on an .fo file that was generated by an xslt transform of an xml file with a Doctype reference, everything works fine and the PDF is generated. (e.g., ) However, when I replace the Doctype reference in the xml file with an xmlSchema reference (e.g., ) FOP

Re: fo failed to process Unicode CJK in servlet

2004-11-04 Thread J.Pietschmann
Ma, Liang wrote: [INFO] Parsing of document complete, stopping renderer The renderer seems to have finished its job without problems. Now the below is the error message from Tomcat, I don't know if it is helpful to solve the problem: Unfortunately, it's indeed unhelpful. My best guess is that there

Problem with FOP and Schemas

2004-11-04 Thread Jon Steeves
Hello: I have a strange problem that I'll try to describe: When I run FOP on an .fo file that was generated by an xslt transform of an xml file with a Doctype reference, everything works fine and the PDF is generated. (e.g., ) However, when I replace the Doctype reference in the xml fil

Re: bold font

2004-11-04 Thread Clay Leeds
On Nov 4, 2004, at 8:29 AM, Mark Donnelly wrote: blah blah blah That should be: blah blah blah Any ideas how I might get this to work? It works fine for a font-style="italic". Mark font-style="italic" is correct for 'italic' Web Maestro Clay -- Clay Leeds - <[EMAIL PROTECTED]> Webmaster/Develope

RE: bold font

2004-11-04 Thread Mark Donnelly
Thanks, works fine. -Original Message- From: Gehrer Helmut [mailto:[EMAIL PROTECTED] Sent: 04 November 2004 16:35 To: '[EMAIL PROTECTED]' Subject: AW: bold font Hi Marc Use blah blah blah Instead! Helmut > -Ursprüngliche Nachricht- > Von: Mark Donnelly [mailto:[EMAIL PROTEC

Re: bold font

2004-11-04 Thread Chris Bowditch
Mark Donnelly wrote: Im trying to get a bold font using the following blah blah blah This should be: blah blah blah Chris - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

AW: bold font

2004-11-04 Thread Gehrer Helmut
Hi Marc Use blah blah blah Instead! Helmut > -Ursprüngliche Nachricht- > Von: Mark Donnelly [mailto:[EMAIL PROTECTED] > Gesendet: Donnerstag, 4. November 2004 17:30 > An: [EMAIL PROTECTED] > Betreff: bold font > > > Im trying to get a bold font using the following > > > > blah b

bold font

2004-11-04 Thread Mark Donnelly
Im trying to get a bold font using the following blah blah blah When I run it through fop I get the following error: [ERROR] defaulted font to any,normal,normal [ERROR] unknown font sans-serif,bold,normal so defaulted font to any Any ideas how I might get this to work? It works fine for

RE: fo failed to process Unicode CJK in servlet

2004-11-04 Thread Ma, Liang
Hi Pietschmann, Thanks for your reply. The servlet failed within driver.run() and there is no pdf generated. The servlet produces pdf with standard fonts beatifully. Here is the logs from fop, which is very much the same when the servlet works with standard fonts before driver.run [INFO] Using o

Re: Does anyone know of an XSD to DTD converter?

2004-11-04 Thread Chris Bowditch
Jon Steeves wrote: Does anyone know of an XSD to DTD converter? Obviously, it doesn't have to capture all of the info in the XSD. XMLSpy also has facilities for converting between DTD and schemas. Chris - To unsubscribe, e-mail: [

RE: MICR font in FOP as an embedded application..

2004-11-04 Thread Anil R. Pinto
Hi Saptarshi, Hmmm... yes your application need uses the CommanLineOptions class that's why u mentioned the -c switch. Well, in my case the process of PDF generation is simple -> XML + XSL = PDF, in which I have to introduce MICR fonts and I guess the org.apache.fop.apps.Options will work for me.

RE: MICR font in FOP as an embedded application..

2004-11-04 Thread Saptarshi Sen
Hi Anil, We are using FOP to convert SVG images -> FO -> PDF. After forming the FO file, we issue a command to FOP to convert it to a PDF. The call to FOP goes somewhat like this: String[] args = new String[]{"-c", userConfigFile, "-fo", inputFile, "-pdf", outputFile}; try

RE: MICR font in FOP as an embedded application..

2004-11-04 Thread Anil R. Pinto
Thanks guys, As the userconfig xml within the jar s not being used, I guess I'll stick to the approach mentioned by Saptarshi, which hapens to also be the one suggested on the Apache FOP website, except one thing, in the embedded mode we need to use the org.apache.fop.apps.Options class that repre