Re: Exploring the FOP API design space

2002-06-02 Thread David B. Bitton
cruft ? -- David B. Bitton [EMAIL PROTECTED] www.codenoevil.com Code Made Fresh DailyT - Original Message - From: "J.Pietschmann" <[EMAIL PROTECTED]> To: "fop dev" <[EMAIL PROTECTED]> Sent: Friday, May 31, 2002 5:34 PM Subject: Exploring the FOP API

Re: C# Version of FOP

2002-05-28 Thread David B. Bitton
Please provide a link to your company's site so we can sample the ported code. Thanks. -- David B. Bitton [EMAIL PROTECTED] www.codenoevil.com Code Made Fresh DailyT - Original Message - From: "Mark Griffiths" <[EMAIL PROTECTED]> To: "Fop-Dev" <[EMAI

Re: Embedding Example

2002-05-24 Thread David B. Bitton
you have received this communication in error please notify the sender of > the delivery error by e-mail or call Park City Solutions Inc. corporate > offices at (435) 654-0621 > > -Original Message- > From: David B. Bitton [mailto:[EMAIL PROTECTED]] > Sent: Friday, May 2

Embedding Example

2002-05-24 Thread David B. Bitton
Why if passing the ContentHandler from FOP into a Xalan transform is faster, is it not done this way in the embedding example? Can I write an example for doing it this way for inclusion in the distro? -- David B. Bitton [EMAIL PROTECTED] www.codenoevil.com Code Made Fresh DailyT

Re: embedded FOP from Document to PDF

2002-05-23 Thread David B. Bitton
doc ), new SAXResult( driver.getContentHandler() )); ... also, by doing this, you do not need to pass any document or inputsource or even call render(), because it all done once the transform finishes. lemme know if you need an example. -- David B. Bitton [EMAIL PROTECTED] www.codenoevil.com Co

Re: PDF encryption

2002-04-28 Thread David B. Bitton
ou'll see strength 128 and next to it, 5.0 in parenthesis. -- David B. Bitton [EMAIL PROTECTED] www.codenoevil.com Code Made Fresh DailyT - Original Message - From: "J.Pietschmann" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, April 28, 2002 5:3

Re: PCL renderer limitations

2002-04-26 Thread David B. Bitton
checkout www.netlingo.com   --   David B. Bitton[EMAIL PROTECTED]www.codenoevil.com   Code Made Fresh Daily™ - Original Message - From: Art Welch To: '[EMAIL PROTECTED]' Sent: Friday, April 26, 2002 2:59 PM Subject: RE: PCL renderer limitations

Re: Using Options With Enbedding

2002-04-25 Thread David B. Bitton
user configuration file ... or something very similiar This is generated by the Options object. -- David B. Bitton [EMAIL PROTECTED] www.codenoevil.com Code Made Fresh DailyT - Original Message - From: "Jeremias Maerki" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMA

Re: Exception message text not bubbling up

2002-04-24 Thread David B. Bitton
null. -- David B. Bitton [EMAIL PROTECTED] www.codenoevil.com Code Made Fresh DailyT - Original Message - From: "Nancy Deschenes" <[EMAIL PROTECTED]> To: "David B. Bitton" <[EMAIL PROTECTED]> Sent: Wednesday, April 24, 2002 4:57 PM Subject: Re: Except

Re: Exception message text not bubbling up

2002-04-24 Thread David B. Bitton
No, I know what stack traces info is. You asked me if I was sure whether FOP threw the exception, and yes, based on the stack trace, it was FOP that threw the exception. -- David B. Bitton [EMAIL PROTECTED] www.codenoevil.com Code Made Fresh DailyT - Original Message - From

Re: Exception message text not bubbling up

2002-04-23 Thread David B. Bitton
It;s just that the stack trace shows the exception being thrown from line 149 of ...PageSequence. Oh well. -- David B. Bitton [EMAIL PROTECTED] www.codenoevil.com Code Made Fresh DailyT - Original Message - From: "J.Pietschmann" <[EMAIL PROTECTED]> To: <[EMAIL PROTEC

Exception message text not bubbling up

2002-04-23 Thread David B. Bitton
org.apache.fop.pagination.PageSequence: throw new FOPException("page-sequence must be child of root, not " + parent.getName()); is eventually thrown by the Transformer as a TransformerException, but when I getMessage(), it's an NPE. Any idea why this would b

Re: Unix and FOP ?

2002-04-12 Thread David B. Bitton
yep -- David B. Bitton [EMAIL PROTECTED] www.codenoevil.com Code Made Fresh DailyT - Original Message - From: "Carlos Daniel Schafer" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, April 12, 2002 9:47 AM Subject: RE: Unix and FOP ? > In window, I c

Re: Unix and FOP ?

2002-04-12 Thread David B. Bitton
I have used FOP on Linux w/ TTF fonts. Just reference them in userconfig.xml file like you would any font. The instructions on doing this are available from FOP -- David B. Bitton [EMAIL PROTECTED] www.codenoevil.com Code Made Fresh Daily™ - Original Message - From: "Carlos D

Re: Multithreading FOP ?

2002-04-11 Thread David B. Bitton
call, and passed it directly to my helper function, everything works fine. -- David B. Bitton [EMAIL PROTECTED] www.codenoevil.com Code Made Fresh DailyT - Original Message - From: "Jeremias Maerki" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, April 11

Re: Multithreaded failure

2002-04-04 Thread David B. Bitton
th it. My question is this, if I have a Driver object as a global inside my class, will it be trounced by another instance running in a different thread? -- David B. Bitton [EMAIL PROTECTED] www.codenoevil.com Code Made Fresh DailyT - Original Message - From: "Scott Moore" <[EM

Re: Multithreaded failure

2002-04-04 Thread David B. Bitton
Simply because it is at the top of my SOAP method. I don't think that there is an init() called on a SOAP class. Also, do you instantiate a new Driver object for every call to the servlet? I'd appreciate if you could share some code. Thanks. -- David B. Bitton [EMAIL

Multithreaded failure

2002-04-04 Thread David B. Bitton
tion relies on this working, so any help would be more than greatly appreciated. I'll be sure to reciprocate if you are ever in NYC. -- David B. Bitton [EMAIL PROTECTED] www.codenoevil.com Code Made Fresh DailyT - To un

FOP in a multithreading environment

2002-04-02 Thread David B. Bitton
? -- David B. Bitton [EMAIL PROTECTED] www.codenoevil.com Code Made Fresh DailyT - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]

Keep two table rows together

2002-04-01 Thread David B. Bitton
I have a table with data that is "grouped" every two rows. The first row has data in cells, and the second row is a span, and it has additional info. How can I stop a page break between the two rows? -- David B. Bitton [EMAIL PROTECTED] www.codenoevil.com Code Made Fr

Re: Problems with SAX pipeline

2002-03-26 Thread David B. Bitton
my code uses the following: transformer.transform( new DOMSource( doc ), new SAXResult( _driver.getContentHandler() )); and it works great. Lemme know if you'd like to see the rest. :) -- David B. Bitton [EMAIL PROTECTED] www.codenoevil.com Code Made Fresh DailyT - Original Me

Re: Re: Rendering from a Document

2002-03-22 Thread David B. Bitton
I won't have to hold the XSL:FO output in an object. I am very happy with the way this is turning out. I promise an article on it as soon as I'm finished.y -- David B. Bitton [EMAIL PROTECTED] www.codenoevil.com Code Made Fresh DailyT - Original Message - From: "Jeremias

Re: Rendering from a Document

2002-03-22 Thread David B. Bitton
required data to do > > the XSL:FO transform? > > You got it! That's just what I was about to suggest. > > > On Fri, Mar 22, 2002 at 11:22:12AM -0500, David B. Bitton wrote: > > > 1000/N > > > Status: O > > > X-Status: > >

Re: Rendering from a Document

2002-03-22 Thread David B. Bitton
That's just what I was about to suggest. > > > On Fri, Mar 22, 2002 at 11:22:12AM -0500, David B. Bitton wrote: > > > 1000/N > > > Status: O > > > X-Status: > > > X-Keywords: > > > X-UID: 600 > > > > > > Ok

Re: Fw: Re: Rendering from a Document

2002-03-22 Thread David B. Bitton
I was just looking at the FOP API JavaDocs. Can I use getContentHanlder from the Driver object, send that into the transformer wrapped in a SAXResults object? Will this populate FOP with the required data to do the XSL:FO transform? On Fri, Mar 22, 2002 at 11:22:12AM -0500, David B. Bitton

Re: Fw: Re: Rendering from a Document

2002-03-22 Thread David B. Bitton
D] > > OUTLINE AG > Postfach 3954 - Rhynauerstr. 15 - CH-6002 Luzern > Tel. +41 41 317 2020 - Fax +41 41 317 2029 > Internet http://www.outline.ch > > > --------- > To unsubscribe, e-mail: [E

[david@codenoevil.com: Rendering from a Document]

2002-03-22 Thread David B. Bitton
help. :) -- David B. Bitton [EMAIL PROTECTED] Diversa ab illis virtute valemus. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED] --- End Message ---

NPE on Driver.render(Document)

2002-03-19 Thread David B. Bitton
, but I like to know if the straight forwa= rd method works. Thanks. :) --=20 David B. Bitton [EMAIL PROTECTED] Diversa ab illis virtute valemus. --WIyZ46R2i8wDzkSu Content-Type: application/pgp-signature Content-Disposition: inline -BEGIN PGP SIGNATURE- Version: GnuPG v1.0.6 (GNU/Linux

NPE from Driver.render(Document)

2002-03-19 Thread David B. Bitton
I noticed some unanswered questions in the archives in regards to driver.render(Document) throwing a NullPointerException. Why is this? I read a workaround, but I like to know if the straight forward method work. Thanks. :) -- David B. Bitton [EMAIL PROTECTED] Diversa ab illis virtute

Re: userconfig.xml

2002-03-13 Thread David B. Bitton
;=20 > Greets,=20 > Christian >=20 > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, email: [EMAIL PROTECTED] --=20 David B. Bitton [EMAIL PROTECTED] Diversa ab illis virtute valemus. --cvVnyQ+4j833TQvp Content-Type: application

Re: userconfig.xml

2002-03-12 Thread David B. Bitton
h? Conundrum: How can I gain access to configuration info that resides in the web.xml file for the SOAP servlet that calls my class, that in turn calls FOP? -- David B. Bitton [EMAIL PROTECTED] www.codenoevil.com Diversa ab illis virtute valemus. - Original Message - From: "Beer

Re: FW: [iText-questions] Re: merging two libraries

2002-03-12 Thread David B. Bitton
://www.lowagie.com/iText/examples/Encrypt.java sample. If you check the API JavaDocs, you can see how you can adapt the sample to use the PdfReader constructor i noted earlier. :) -- David B. Bitton [EMAIL PROTECTED] www.codenoevil.com Diversa ab illis virtute valemus. - Original Message

Re: Error with 20.0.3!

2002-03-12 Thread David B. Bitton
. Also changed the unimplemented property space-treatment to white-space-treatment and updated examples and tests to use the new syntax. ... You need to update you XSL-FO to reflect this change in the code. -- David B. Bitton [EMAIL PROTECTED] www.codenoevil.com Diversa ab illis virtute val

Re: [ANNOUNCEMENT] Fop 0.20.3 released

2002-03-11 Thread David B. Bitton
I notice the timestamp on the files is 3/4. Is that right, because that means I already have code made fresh daily. -- David B. Bitton [EMAIL PROTECTED] www.codenoevil.com Diversa ab illis virtute valemus. - Original Message - From: "Christian Geisert" <[EMAIL PROTECTED]

Re: Acrobat 5.0 Error

2002-03-11 Thread David B. Bitton
the pdf from within the servlet.  Try, just for kicks, saving it to disk, and then sending down that Jscript.  If anything, I'd be curious to see what happens.   I code web for a living, so, any questions, feel free...   --   David B. Bitton[EMAIL PROTECTED]www.codenoevil.com   Di

Re: Acrobat 5.0 Error

2002-03-11 Thread David B. Bitton
If you are using IIS, save the docs in their own folder, then go into the IIS setting, and enable content expiration (it's on the HTTP Headers tab) just for that folder and set it to expire immediately.  If you don't do this, IE will keep pulling the PDF from it's cache if you

Re: userconfig.xml

2002-03-11 Thread David B. Bitton
Yeah. If I try File file = new File("userconfig.xml"), where is it looking relative to the class file requesting the file? -- David B. Bitton [EMAIL PROTECTED] www.codenoevil.com Diversa ab illis virtute valemus. - Original Message - From: "Carlos Daniel Schafer&quo

HowTo Render PDF from XML string and XSL file

2002-03-08 Thread David B. Bitton
putHandler that I can slurp out into my code. Tx :) -- David B. Bitton [EMAIL PROTECTED] www.codenoevil.com Diversa ab illis virtute valemus. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]

Re: Problems using

2002-03-08 Thread David B. Bitton
ither Linux or MS for the server part, and my client is MS.   --   David B. Bitton[EMAIL PROTECTED]www.codenoevil.com   Diversa ab illis virtute valemus. - Original Message - From: "Dunning, John" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, March 08, 200

Re: userconfig.xml

2002-03-08 Thread David B. Bitton
le("c:\tomcat4\webapps\soap\WEB-INF\userconfig.xml") or something like: File file = new File("userconfig.xml") Any ideas? I need the config file because it has font info in it. -- David B. Bitton [EMAIL PROTECTED] www.codenoevil.com Diversa ab illis virtute valemus. - Or

Re: java.util.HashMap to com.sun.java.util.collections.HashMap

2002-03-07 Thread David B. Bitton
Ok, idea be gone. I'm going back to my original idea, SOAP. Tx. -- David B. Bitton [EMAIL PROTECTED] www.codenoevil.com Diversa ab illis virtute valemus. - Original Message - From: "Art Welch" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, Mar

Re: java.util.HashMap to com.sun.java.util.collections.HashMap

2002-03-07 Thread David B. Bitton
ent libraries, Xalan, Xerces, etc. I wanted to make sure I could build the classes before I started the search and destroy mission to find java.util.HashMap. Help? -- David B. Bitton [EMAIL PROTECTED] www.codenoevil.com Diversa ab illis virtute valemus. - Original Message - From: "Ni

Missing src

2002-03-07 Thread David B. Bitton
Maybe I'm missing something, but fop-0.20.3-src.tar.gz has no source in it, just .class files. Ok, what's the trick? -- David B. Bitton [EMAIL PROTECTED] www.codenoevil.com Diversa ab illis virtute valemus. --

java.util.HashMap to com.sun.java.util.collections.HashMap

2002-03-07 Thread David B. Bitton
codebase, because I am rolling FOP up into a COM DLL for use from an ASP page, and J++ (the only way to build a COM DLL, as far as I know) uses 1.1. Any thoughts? -- David B. Bitton [EMAIL PROTECTED] www.codenoevil.com Diversa ab illis virtute valemus

To re-direct or not to re-direct

2002-03-06 Thread David B. Bitton
Perhaps not the correct forum for this question, but do I have to redirect Tomcat through IIS/Apache or can I serve my servlet direct from Tomcat? -- David B. Bitton [EMAIL PROTECTED] www.codenoevil.com Diversa ab illis virtute valemus

Re: Encryption

2002-03-06 Thread David B. Bitton
Would you be so graceous as to share the code you use to do this? I am quite new to Java, so I could use the leg up. Tx :) -- David B. Bitton [EMAIL PROTECTED] www.codenoevil.com Diversa ab illis virtute valemus. - Original Message - From: "Manuel Mall" <[EMAIL P

Re: Encryption

2002-03-06 Thread David B. Bitton
e directly to disk for immediate availability to the browser. The creating of the PDF will be the result of a SOAP call to our PDF server, posting the XSL-FO data. -- David B. Bitton [EMAIL PROTECTED] www.codenoevil.com Diversa ab illis virtute valemus. - Original Message - From: "Ma

Encryption

2002-03-05 Thread David B. Bitton
What is involved in encrypting the outputted PDF?  Is this something that is simple to implement?