Re: XML ---> PDF Japanese

2005-02-03 Thread Manoj_Nair
Luke Thanks for link. However I am not getting any FOP font exception at all. When I open the XML in IE I do see the Japanese characters. But when pass the XML thru FOP and the open the PDF within IE I get junk characters like "#". I can email the userconfig.xml and font metrics file if you w

RE: Page Sequence Master

2005-02-03 Thread Victor Mote
Kumar Puppala wrote: > Thanks Victor for your response. So did you have any > alternate approaches to resolve this issue in your application? That depends on what you mean by "performance issue". If you have plenty of memory, I don't think your performance speed will be adversely affected by usi

RE: Error FOP/BATIK ... PDFXMLHandler:253 - svg graphic could not be built"

2005-02-03 Thread Richard Mixon (qwest)
Bingo! That was it. I changed it from "file://" to "file:///" and all works now. You earlier mentioned that might be it - but I was so focused on the fact that it worked on Java 1.4.1 that I figured I had it correctly. That is weird though that moving past Java 1.4.1 breaks this. Thank you once a

Re: Error FOP/BATIK ... PDFXMLHandler:253 - svg graphic could not be built"

2005-02-03 Thread Thomas DeWeese
Hi Richard, What is 'imageURLProtocol' I'm guessing it's "file://" I think it should be either "file:///" or "file:/". Richard Mixon (qwest) wrote: Thomas DeWeese wrote: Richard Mixon (qwest) wrote: I checked my SVG markup and am not sure how I would change this as I'm using an xlink:href. Her

RE: Error FOP/BATIK ... PDFXMLHandler:253 - svg graphic could not be built"

2005-02-03 Thread Richard Mixon (qwest)
Thomas DeWeese wrote: > Richard Mixon (qwest) wrote: > >> I checked my SVG markup and am not sure how I would change this as >> I'm using an xlink:href. Here is an example: >> >>xlink:href="images/allTimeBest/> value="${cmSummary.allTimeBestIcon}"/>" > > This means that it is using the

Re: Error FOP/BATIK ... PDFXMLHandler:253 - svg graphic could not be built"

2005-02-03 Thread Thomas DeWeese
Richard Mixon (qwest) wrote: I checked my SVG markup and am not sure how I would change this as I'm using an xlink:href. Here is an example: xlink:href="images/allTimeBest/" This means that it is using the base URL for the document to resolve the image reference. The base URL for the doc

RE: Page Sequence Master

2005-02-03 Thread Puppala, Kumar (LNG-DAY)
Thanks Victor for your response. So did you have any alternate approaches to resolve this issue in your application? Thanks, Kumar Puppala -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, February 03, 2005 11:03 AM To: [EMAIL PROTECTED] Subject: Re: P

Re: Page Sequence Master

2005-02-03 Thread Louis . Masters
Kumar: Victor answered my similar question last month (snipped below). >Louis.Masters wrote: > >> In order to get around some memory issues, I am creating >> multiple page sequences on my reports. The problem is, every >> time a new page sequence is created, a new page is created. >> Is there a

RE: Error FOP/BATIK ... PDFXMLHandler:253 - svg graphic could not be built"

2005-02-03 Thread Richard Mixon (qwest)
James, Thanks for the input and suggestion. I installed the Java 1.4 compatibility files for Tomcat 5.5.7 and reverted to Sun Java 1.4.2_03. I still get the error below :( The good news is I know more - it does not appear to be a Java 1.5 issue, but possibly a Tomcat 5.5.x issue. Any additional

Page Sequence Master

2005-02-03 Thread Puppala, Kumar (LNG-DAY)
I have a page sequence master defined as shown below: This sequence holds good for each individual document in my application. But there are times when I need to generate multiple documents within a job and so I use this sequence repeatedly and it works fine. The only problem is that each t

RE: Error FOP/BATIK ... PDFXMLHandler:253 - svg graphic could not be built"

2005-02-03 Thread Richard Mixon (qwest)
Thomas, I checked my SVG markup and am not sure how I would change this as I'm using an xlink:href. Here is an example: " y="" width="" height="" preserveAspectRatio="xMinYMin meet" xlink:href="images/allTimeBest/" pointer-events="visible"

RE: Error FOP/BATIK ... PDFXMLHandler:253 - svg graphic could not be built"

2005-02-03 Thread Richard Mixon (qwest)
Thomas, Thank you for the suggestion. I will check that out this morning - Richard -Original Message- From: Thomas DeWeese [mailto:[EMAIL PROTECTED] Sent: Thursday, February 03, 2005 5:08 AM To: Batik Users Cc: [EMAIL PROTECTED] Subject: Re: Error FOP/BATIK ... PDFXMLHandler:253 - svg gra

RE: Error FOP/BATIK ... PDFXMLHandler:253 - svg graphic could not be built"

2005-02-03 Thread Richard Mixon (qwest)
Jeremias, You are correct - java version "1.5.0_01". And yes I know it is still very new. I needed session replication with Tomcat 5.5.7 and Java 1.5 was recommended (there is a mode that works with Java 1.4 also). Thank you for the API reference I will take a look. - Richard -Original Me

Re: XML ---> PDF Japanese

2005-02-03 Thread Louis . Masters
Manoj: Try to load your fonts without the userconfig.xml file and see if it works (change were necessary): //config fonts Vector allFonts = new Vector(); Vector allTrips = new Vector(); //name weight style allTrips.add(new FontTriplet("MS Song","normal","normal")); al

Re: Error FOP/BATIK ... PDFXMLHandler:253 - svg graphic could not be built"

2005-02-03 Thread Thomas DeWeese
Hi Richard, Well, I don't really know but the first thing that struck me was that the URL in question was a little hokey looking. Normally they would start, "file:///c:/..." or sometimes I'll see "file:/c:/..." (the first is the correct one AFAIK). Is it possible you goofed when you updated the

Re: XML ---> PDF Japanese

2005-02-03 Thread Jeremias Maerki
Check this out: http://xml.apache.org/fop/embedding.html#config-external On 03.02.2005 00:28:24 Manoj_Nair wrote: > My question is how would FOP on weblogic know how to use the new > userconfig.xml file. I tried to add / update the MSGothic.xml / > userconfig.xml in FOP.JAR but I get read/write pe

Re: Error FOP/BATIK ... PDFXMLHandler:253 - svg graphic could not be built"

2005-02-03 Thread Jeremias Maerki
You're asking for something to work that was written before JDK 1.5 was out. 1.5 has some serious consequences. Not everything is guaranteed to continue working. BTW, are you sure you mean 1.5.1 or rather 1.5.0_01 which is the latest version? Just keep in mind that due to these bigger changes it wi

Error FOP/BATIK ... PDFXMLHandler:253 - svg graphic could not be built"

2005-02-03 Thread Richard Mixon (qwest)
My build of FOP from 2004/05/29 works fine on Sun Java 1.4.1_02 with Tomcat 5.0.19, but when I move toSun Java 1.5.1 and Tomcat 5.5.7 I get the URI I/O error listed below. This build included a Batik.jar with files dates 10/11/2003. The exception message below seems to indicate it is choking on th