Re: Excel format

2005-12-07 Thread Craig McDaniel
is not needed for this. I put the entire thing together in about two days so it isn't a big deal. However, there are some gotchas between the two formats that will drive you crazy so be careful. Would one of those gotchas be that the Excel XML format skips empty cells? -- Craig McDaniel

XMLFilters vs Pipes

2005-12-04 Thread Craig McDaniel
When it is necessary to do several transforms ending in FOP serialization, which is the better choice, XMLFilters or Pipes (TransformHandlers)? Is there a difference in performance? Are there different scenarios where one just makes more sense than the other? -- Craig McDaniel

Re: Non-breaking space turning into ??

2005-12-01 Thread Craig McDaniel
Well, the FileReader is reading into a String and then it is converted to a byte array using getBytes(). I know, its weird, but I'm not the original author of this code and its my job to fix it. On 12/1/05, J.Pietschmann [EMAIL PROTECTED] wrote: Craig McDaniel wrote: However, when I create

Re: Non-breaking space turning into ??

2005-11-30 Thread Craig McDaniel
. Are we any closer? On 11/25/05, Craig McDaniel [EMAIL PROTECTED] wrote: On 11/25/05, Andreas L Delmelle [EMAIL PROTECTED] wrote: On Nov 25, 2005, at 22:14, Craig McDaniel wrote: I am trying to debug a PDF rendering for a client where non-breaking spaces are comming out as double question

Re: Non-breaking space turning into ??

2005-11-30 Thread Craig McDaniel
/05, Craig McDaniel [EMAIL PROTECTED] wrote: I've been able to debug this a little bit, and it seems that, even though I am setting the output encoding to UTF-8, it is being written as ASCII. Since we can't get much farther without posting code, here goes: Serializer serializer

Re: Non-breaking space turning into ??

2005-11-25 Thread Craig McDaniel
On 11/25/05, Andreas L Delmelle [EMAIL PROTECTED] wrote: On Nov 25, 2005, at 22:14, Craig McDaniel wrote: I am trying to debug a PDF rendering for a client where non-breaking spaces are comming out as double question marks ??. FOP is being called from a servlet. I have tried using the fop

Re: Non-breaking space turning into ??

2005-11-25 Thread Craig McDaniel
On 11/25/05, Andreas L Delmelle [EMAIL PROTECTED] wrote: On Nov 25, 2005, at 22:46, Craig McDaniel wrote: Likewise, the output of the driver is written to a byte array and finally, it gets sent to the browser with response.getOutputStream().write(bytes). Your culprit is very close by here