Re: PDF generation in Chrome and Safari

2010-04-20 Thread James Holmes

http://kb2.adobe.com/cps/405/kb405461.html

mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/


On 20 April 2010 22:53, Glenn Hartong  wrote:

>
> Hi all,
>
> I'm trying to generate a PDF. Should be easy right?
>
> Problem is, Chrome and Safari throw this error in Acrobat:
> "Cannot use Adobe Reader to view PDF in your web browser. Reader will now
> exit. Please exit your browser and try again."
>
> Firefox and IE are fine.
>
> I want the download option not the display in browser option. That would
> solve this problem I believe. I've used cfheader with value="attachment;
> filename=file.ext" and it has worked in the past, but I can't verify I was
> doing it with PDFs.
>
> Here's my code:
>
> 
>CERTIFICATE STUFF HERE
> 
> 
>#myPDF#
> 
> 
> 
>
> Any help will be greatly appreciated.
> Glenn
>
>
> 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:333036
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: PDF generation in Chrome and Safari

2010-04-20 Thread Mark A. Kruger

Glenn,

Mine does that too but I click cancel and it comes up anyway.

-mark


Mark A. Kruger, MCSE, CFG
(402) 408-3733 ext 105
www.cfwebtools.com
www.coldfusionmuse.com
www.necfug.com


-Original Message-
From: Glenn Hartong [mailto:gl...@glickcf.com] 
Sent: Tuesday, April 20, 2010 9:54 AM
To: cf-talk
Subject: PDF generation in Chrome and Safari


Hi all,

I'm trying to generate a PDF. Should be easy right?

Problem is, Chrome and Safari throw this error in Acrobat:
"Cannot use Adobe Reader to view PDF in your web browser. Reader will now
exit. Please exit your browser and try again."

Firefox and IE are fine.

I want the download option not the display in browser option. That would
solve this problem I believe. I've used cfheader with value="attachment;
filename=file.ext" and it has worked in the past, but I can't verify I was
doing it with PDFs.

Here's my code:


CERTIFICATE STUFF HERE


#myPDF#




Any help will be greatly appreciated.
Glenn




~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:333035
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: PDF Generation

2009-12-29 Thread Dave Watts

> I am not creating forms. I have pdf which needs to feed the variables like
> Company Name: *ABC company*
>
> I need to put the company_name variable where ABC printed.
> I don't want to create a form element that should be rather than just
> #company_name# and not 
>
> As you said that I can use the cfpdfform action="populate" with
> cfpdfformparam values nested
> That will be used for the form values. What if I have no form in my pdf at
> all?
> How do I created variables (to display, not form variables) in pdf file?
> I see the "textfield" in livecycle designer in object library but again that
> will create the texfield type form element in my pdf which I don't want. I
> only want to display data there where the company name is not the input
> field.

PDFs don't have "variables" in the sense in which you're referring.

My recommendation is that you make the PDF into a form, and make the
fields read-only with no decorative elements. Then, you can easily
inject the values you want using CFPDFFORM, etc. This is a very common
approach to this problem. If you have an existing PDF that's not a
form, simply import it into LiveCycle Designer as "background art"
using the "fixed pages" option. Then, draw out whatever form fields
you need, remove their captions and any other visual elements, and set
them to read-only.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329361
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: PDF Generation

2009-12-29 Thread Martin Franklin

Asim

Check out Dynamic PDF v4.0
http://www.dynamicpdf.com/?gclid=CNL8hdiL_J4CFQoiagodSh8mmQ

- Original Message - 
From: "Asim Manzur" 
To: "cf-talk" 
Sent: Tuesday, December 29, 2009 8:41 AM
Subject: Re: PDF Generation


>
> Yes the problem is this pdf has lines, and sections and bar codes and 
> bunch
> of other static stuff, which I can easily handle in pdf template but will
> become pain if I do in html.
>
> I am currently using this with ActivePDF but that where I am designing and
> drawing it line by line.
>
> Its now have very easy chances, but if client add more sections that will
> become very complicate. So, I want to see if I can have in design view 
> just
> drop variables and when new changes comes in, it will be easy to modify 
> the
> template.
>
> Thanks,
> AM
>
>
>>Is there a reason you can't just create the template with HTML and use
>>cfdocument to create the PDF? > >mxAjax / CFAjax docs and other useful
> articles: >http://www.bifrost.com.au/blog/ >> >> I am not creating forms. 
> I
> have pdf which needs to feed the variables like >> Company Name: *ABC
> company* >> >> I need to put the company_name variable where ABC printed. 
>  >>
> I don't want to create a form element that should be rather than just >>
> #company_name# and not 
>
>
> 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329360
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: PDF Generation

2009-12-29 Thread Asim Manzur

Yes the problem is this pdf has lines, and sections and bar codes and bunch
of other static stuff, which I can easily handle in pdf template but will
become pain if I do in html.

I am currently using this with ActivePDF but that where I am designing and
drawing it line by line.

Its now have very easy chances, but if client add more sections that will
become very complicate. So, I want to see if I can have in design view just
drop variables and when new changes comes in, it will be easy to modify the
template.

Thanks,
AM


>Is there a reason you can't just create the template with HTML and use
>cfdocument to create the PDF? > >mxAjax / CFAjax docs and other useful
articles: >http://www.bifrost.com.au/blog/ >> >> I am not creating forms. I
have pdf which needs to feed the variables like >> Company Name: *ABC
company* >> >> I need to put the company_name variable where ABC printed. >>
I don't want to create a form element that should be rather than just >>
#company_name# and not 


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329359
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: PDF Generation

2009-12-29 Thread James Holmes

Is there a reason you can't just create the template with HTML and use
cfdocument to create the PDF?

mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/



2009/12/29 Asim Manzur :
>
> I am not creating forms. I have pdf which needs to feed the variables like
> Company Name: *ABC company*
>
> I need to put the company_name variable where ABC printed.
> I don't want to create a form element that should be rather than just
> #company_name# and not 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329358
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: PDF Generation

2009-12-29 Thread Asim Manzur

I am not creating forms. I have pdf which needs to feed the variables like
Company Name: *ABC company*

I need to put the company_name variable where ABC printed.
I don't want to create a form element that should be rather than just
#company_name# and not 

As you said that I can use the cfpdfform action="populate" with
cfpdfformparam values nested
That will be used for the form values. What if I have no form in my pdf at
all?
How do I created variables (to display, not form variables) in pdf file?
I see the "textfield" in livecycle designer in object library but again that
will create the texfield type form element in my pdf which I don't want. I
only want to display data there where the company name is not the input
field.


Thanks for your help once again.

Regards,
AM

>> Thank you for the reference. I got LiveCycle setup in my machine and was
>> trying to setup the PDF with LiveCycle Designer but Have no clue how
to >> setup variables etc in PDF. I could not find any information about
that >> anywhere. appreciate if someone share their experience. Thanks, >
>I'm unclear about your question. Are you asking how to create PDF >forms in
LiveCycle Designer, or how to refer to fields within those >PDF forms from
CF? > >Dave Watts, CTO, Fig Leaf Software >http://www.figleaf.com/ > >Fig
Leaf Software provides the highest caliber vendor-authorized >instruction at
our training centers in Washington DC, Atlanta, >Chicago, Baltimore,
Northern Virginia, or on-site at your location. >Visit
http://training.figleaf.com/ for more information!


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329357
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: PDF Generation

2009-12-29 Thread Dave Watts

> Thank you for the reference. I got LiveCycle setup in my machine and was
> trying to setup the PDF with LiveCycle Designer but Have no clue how to
> setup variables etc in PDF. I could not find any information about that
> anywhere. appreciate if someone share their experience. Thanks,

I'm unclear about your question. Are you asking how to create PDF
forms in LiveCycle Designer, or how to refer to fields within those
PDF forms from CF?

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329352
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: PDF Generation

2009-12-29 Thread Asim Manzur

Thank you for the reference. I got LiveCycle setup in my machine and was
trying to setup the PDF with LiveCycle Designer but Have no clue how to
setup variables etc in PDF. I could not find any information about that
anywhere. appreciate if someone share their experience. Thanks,

..
Regards,
AM


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329350
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: PDF Generation

2009-12-23 Thread Dave Watts

> I know that you can have a PDF form which can post the data to a server.
> But I am looking for something which allows me to create a PDF template and
> I can drop variables there and coldFusion can feed the data to that PDF
> template.

You can write values to a LiveCycle Designer PDF form from CF using
the CFPDFFORM and CFPDFFORMPARAM tags.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329336
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: PDF Generation

2009-12-23 Thread Scott Stewart

Asim, 

You can use cfpdfform action="populate" with cfpdfformparam values nested

-Original Message-
From: Asim Manzur [mailto:bytel...@gmail.com] 
Sent: Wednesday, December 23, 2009 9:57 AM
To: cf-talk
Subject: PDF Generation


I know that you can have a PDF form which can post the data to a server.
But I am looking for something which allows me to create a PDF template and
I can drop variables there and coldFusion can feed the data to that PDF
template.

Currently using ActivePDF for this but wondering if CF8 or CF9 does have
that capability.

Thanks,

..
Regards,
AM




~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329335
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: PDF generation 4x slower in CF8?

2009-04-02 Thread Jordan Roher

No one else encountered this? Really?

The solution I came up with was to send PDF processing to another server 
running CF7. That server processes the CFDocument tag and sends back the file. 
Here's the custom tag I came up with to hand off and receive the data.




// Constants
null = "";  dot = ".";  
slash = "/";
backslash = "\";semicolon = ";";
dash = "-";
star = "*"; space = " ";
all = "all";
one = "one";comma = ",";
tab = chr(9);
newline = chr(13);  newline2 = chr(10); 
amp = "&";

// Parameter collection and processing
universalParameters = "
document
,   timeout
,   tempFolder
,   server
";

// Remove newlines, spaces and tab characters
universalParameters = REReplace(universalParameters, 
"[\s]", null, all);

// Populate variables with null
for(i = 1; i LTE ListLen(universalParameters); i = i + 
1) {
if(NOT StructKeyExists(attributes, 
ListGetAt(universalParameters, i))) {
StructInsert(attributes, 
ListGetAt(universalParameters, i), null);
}
}

// General error checking
errorMessage = null;

if(attributes.document IS null) {
errorMessage = "Document to generate not 
specified";
}

if(attributes.timeout IS null OR NOT 
IsNumeric(attributes.timeout)) {
attributes.timeout = 60;
}

if(attributes.tempFolder IS null AND 
IsDefined("caller.email_attach_path")) {
attributes.tempFolder = 
caller.email_attach_path;
}
if(NOT DirectoryExists(attributes.tempFolder)) {
errorMessage = "Temporary folder not 
accessible";
}

if(attributes.server IS null) {
errorMessage = "Other server not specified";
}





















































 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321262
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: PDF Generation

2005-10-06 Thread Andy Matthews
Ben...

If you're using MX7, cfd should be able to make a PDF from any web page.
Have you placed a style around the text you want justified and gone that
route?

Is it the PDF itself that's not justifying correctly? Have you viewed the
content without the cfdocument tag around to make sure it looks correct?



-Original Message-
From: Ben Nadel [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 06, 2005 3:09 PM
To: CF-Talk
Subject: PDF Generation


I have tried checking the archives, and I just can't find a good answer. I
am trying to generate PDF on the fly. I have given CFDocument a chance,
which is good, but my client Requires justified text, which CFD cannot
handle. So, i am wondering if anyone out there has a good suggestion for PDF
generation in CF.

>From google, i have found Active PDF and Corda Highwire. Neither of these
looks "Easy" to use like CFDocument, but maybe that is just the way it is.

Ideally i would like to create PDF from HTML.

Thanks!
Ben Nadel
Nylon Technology
212.691.1134



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:220272
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: PDF generation

2001-02-15 Thread Arden Weiss

Brain cramp -- the url that works is 
http://www.ibiblio.org/xml/books/bible/updates/15.html

 ^
/ \__
   (@\___
  /  O
 /(_/
/_/
Whoof...
410-757-3487

-Original Message-
From:   Paige Chandler [SMTP:[EMAIL PROTECTED]]
Sent:   Thursday, February 15, 2001 11:16 PM
To: CF-Talk
Subject:Re: PDF generation

I get file not available - been moved. Maybe took X-Lax! I still have some
interest in XML.

PC
- Original Message -
From: "Arden Weiss" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, February 15, 2001 4:04 PM
Subject: RE: PDF generation


> Also, www.ibiblio.org/xml/books/bible/updates/15.htm for Chapter 15 of the
XML Bible book that explains the details of FOP usage.
>
>  ^
> / \__
>(@\___
>   /  O
>  /(_/
> /_/
> Whoof...
> 410-757-3487
>
> -Original Message-
> From: Caulfield, Michael [SMTP:[EMAIL PROTECTED]]
> Sent: Thursday, February 15, 2001 3:47 PM
> To: CF-Talk
> Subject: RE: PDF generation
>
>
> http://www.ininet.com/home/cfsouth.zip
>
>
> -Original Message-
> From: Stephen M Aylor [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, February 15, 2001 12:35 PM
> To: CF-Talk
> Subject: Re: PDF generation
>
>
> Search on the site results in NIL under Adobe / PDF / CFSOUTH ... tho I
did
> find a pr on the CfSouth Presentation
>
> Steve
>
> - Original Message -
> From: "Caulfield, Michael" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Thursday, February 15, 2001 9:50 AM
> Subject: RE: PDF generation
>
>
> > If you go to www.ininet.com there should be some presentation materials
> (and
> > sample code) on this topic from a presentation Neil Giarratana gave at
> > CFSOUTH.
> >
> > I haven't tried it, so I can't comment on the robustness of it, but
> glancing
> > through the powerpoints it looked pretty slick.
> >
> > Michael Caulfield
> > Cognitive Arts
> >
> > -Original Message-
> > From: Billy Cravens [mailto:[EMAIL PROTECTED]]
> > Sent: Thursday, February 15, 2001 11:32 AM
> > To: CF-Talk
> > Subject: OT: PDF generation
> >
> >
> > I have the task of finding a solution for generating volumes of PDF's.
> > Pretty typical: pull info from db, build a pdf, and save it to disk.
> > However, we're talking about 10,000 pdf's at once.  Anyone have any
> > ideas on what would be the most robust solution?
> >
> > --
> > Billy Cravens
> > HR Web Development, Sabre
> > [EMAIL PROTECTED]
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: PDF generation

2001-02-15 Thread Paige Chandler

I get file not available - been moved. Maybe took X-Lax! I still have some
interest in XML.

PC
- Original Message -
From: "Arden Weiss" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, February 15, 2001 4:04 PM
Subject: RE: PDF generation


> Also, www.ibiblio.org/xml/books/bible/updte/15.htm for Chapter 15 of the
XML Bible book that explains the details of FOP usage.
>
>  ^
> / \__
>(@\___
>   /  O
>  /(_/
> /_/
> Whoof...
> 410-757-3487
>
> -Original Message-
> From: Caulfield, Michael [SMTP:[EMAIL PROTECTED]]
> Sent: Thursday, February 15, 2001 3:47 PM
> To: CF-Talk
> Subject: RE: PDF generation
>
>
> http://www.ininet.com/home/cfsouth.zip
>
>
> -Original Message-
> From: Stephen M Aylor [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, February 15, 2001 12:35 PM
> To: CF-Talk
> Subject: Re: PDF generation
>
>
> Search on the site results in NIL under Adobe / PDF / CFSOUTH ... tho I
did
> find a pr on the CfSouth Presentation
>
> Steve
>
> - Original Message -
> From: "Caulfield, Michael" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Thursday, February 15, 2001 9:50 AM
> Subject: RE: PDF generation
>
>
> > If you go to www.ininet.com there should be some presentation materials
> (and
> > sample code) on this topic from a presentation Neil Giarratana gave at
> > CFSOUTH.
> >
> > I haven't tried it, so I can't comment on the robustness of it, but
> glancing
> > through the powerpoints it looked pretty slick.
> >
> > Michael Caulfield
> > Cognitive Arts
> >
> > -Original Message-
> > From: Billy Cravens [mailto:[EMAIL PROTECTED]]
> > Sent: Thursday, February 15, 2001 11:32 AM
> > To: CF-Talk
> > Subject: OT: PDF generation
> >
> >
> > I have the task of finding a solution for generating volumes of PDF's.
> > Pretty typical: pull info from db, build a pdf, and save it to disk.
> > However, we're talking about 10,000 pdf's at once.  Anyone have any
> > ideas on what would be the most robust solution?
> >
> > --
> > Billy Cravens
> > HR Web Development, Sabre
> > [EMAIL PROTECTED]
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: PDF generation

2001-02-15 Thread Arden Weiss

Also, www.ibiblio.org/xml/books/bible/updte/15.htm for Chapter 15 of the XML Bible 
book that explains the details of FOP usage.

 ^
/ \__
   (@\___
  /  O
 /(_/
/_/
Whoof...
410-757-3487

-Original Message-
From:   Caulfield, Michael [SMTP:[EMAIL PROTECTED]]
Sent:   Thursday, February 15, 2001 3:47 PM
To: CF-Talk
Subject:RE: PDF generation


http://www.ininet.com/home/cfsouth.zip


-Original Message-
From: Stephen M Aylor [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 15, 2001 12:35 PM
To: CF-Talk
Subject: Re: PDF generation


Search on the site results in NIL under Adobe / PDF / CFSOUTH ... tho I did
find a pr on the CfSouth Presentation

Steve

- Original Message -
From: "Caulfield, Michael" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, February 15, 2001 9:50 AM
Subject: RE: PDF generation


> If you go to www.ininet.com there should be some presentation materials
(and
> sample code) on this topic from a presentation Neil Giarratana gave at
> CFSOUTH.
>
> I haven't tried it, so I can't comment on the robustness of it, but
glancing
> through the powerpoints it looked pretty slick.
>
> Michael Caulfield
> Cognitive Arts
>
> -Original Message-
> From: Billy Cravens [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, February 15, 2001 11:32 AM
> To: CF-Talk
> Subject: OT: PDF generation
>
>
> I have the task of finding a solution for generating volumes of PDF's.
> Pretty typical: pull info from db, build a pdf, and save it to disk.
> However, we're talking about 10,000 pdf's at once.  Anyone have any
> ideas on what would be the most robust solution?
>
> --
> Billy Cravens
> HR Web Development, Sabre
> [EMAIL PROTECTED]
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: PDF generation

2001-02-15 Thread Sean Renet

I am with Simon, I have kicked the chit out of activepdf and for batch I
have had no problems.  Also, it is great for on the fly generation and easy
to program (here is where thier cf examples are...
http://www.activepdf.com/examples.asp?ID=CF0006).  Their support is great.
Just call the sales number on thier website and ask to speak to Tim.  He can
pretty much walk you through any programming questions.

Sean Renet.

www.activepdf.com
- Original Message -
From: "Caulfield, Michael" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, February 15, 2001 12:47 PM
Subject: RE: PDF generation


>
> http://www.ininet.com/home/cfsouth.zip
>
>
> -Original Message-
> From: Stephen M Aylor [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, February 15, 2001 12:35 PM
> To: CF-Talk
> Subject: Re: PDF generation
>
>
> Search on the site results in NIL under Adobe / PDF / CFSOUTH ... tho I
did
> find a pr on the CfSouth Presentation
>
> Steve
>
> - Original Message -
> From: "Caulfield, Michael" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Thursday, February 15, 2001 9:50 AM
> Subject: RE: PDF generation
>
>
> > If you go to www.ininet.com there should be some presentation materials
> (and
> > sample code) on this topic from a presentation Neil Giarratana gave at
> > CFSOUTH.
> >
> > I haven't tried it, so I can't comment on the robustness of it, but
> glancing
> > through the powerpoints it looked pretty slick.
> >
> > Michael Caulfield
> > Cognitive Arts
> >
> > -Original Message-
> > From: Billy Cravens [mailto:[EMAIL PROTECTED]]
> > Sent: Thursday, February 15, 2001 11:32 AM
> > To: CF-Talk
> > Subject: OT: PDF generation
> >
> >
> > I have the task of finding a solution for generating volumes of PDF's.
> > Pretty typical: pull info from db, build a pdf, and save it to disk.
> > However, we're talking about 10,000 pdf's at once.  Anyone have any
> > ideas on what would be the most robust solution?
> >
> > --
> > Billy Cravens
> > HR Web Development, Sabre
> > [EMAIL PROTECTED]
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: PDF generation

2001-02-15 Thread Caulfield, Michael


http://www.ininet.com/home/cfsouth.zip


-Original Message-
From: Stephen M Aylor [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 15, 2001 12:35 PM
To: CF-Talk
Subject: Re: PDF generation


Search on the site results in NIL under Adobe / PDF / CFSOUTH ... tho I did
find a pr on the CfSouth Presentation

Steve

- Original Message -
From: "Caulfield, Michael" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, February 15, 2001 9:50 AM
Subject: RE: PDF generation


> If you go to www.ininet.com there should be some presentation materials
(and
> sample code) on this topic from a presentation Neil Giarratana gave at
> CFSOUTH.
>
> I haven't tried it, so I can't comment on the robustness of it, but
glancing
> through the powerpoints it looked pretty slick.
>
> Michael Caulfield
> Cognitive Arts
>
> -Original Message-
> From: Billy Cravens [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, February 15, 2001 11:32 AM
> To: CF-Talk
> Subject: OT: PDF generation
>
>
> I have the task of finding a solution for generating volumes of PDF's.
> Pretty typical: pull info from db, build a pdf, and save it to disk.
> However, we're talking about 10,000 pdf's at once.  Anyone have any
> ideas on what would be the most robust solution?
>
> --
> Billy Cravens
> HR Web Development, Sabre
> [EMAIL PROTECTED]
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: PDF generation

2001-02-15 Thread Simon Horwith

I've put activepdf under pretty good stress on windows.  In my opinion, it's
not the best tool for batch processing, but is excellent for "on the fly"
pdf generation and for very dynamic page generation (it integrates very well
with other COM Objects).  Unlike some of the other servers I wrote test code
for, activepdf did an excellent job queing requests without bombing out.

~Simon

> Simon Horwith
> Allaire Certified Instructor
> Certified ColdFusion Developer
> Fig Leaf Software
> 1400 16th St NW, # 220
> Washington DC 20036
> 202.797.6570 (direct line)
> www.figleaf.com
> 


-Original Message-
From: Stephen M Aylor [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 15, 2001 1:29 PM
To: CF-Talk
Subject: Re: PDF generation


Anyone hear put ActivePDF under that kind of stress? (10,000 pages / files
at a a whack?)

If your on a WIN platform give activepdf a whirl. If other OS or you run
into prob's with ActivePDF ( i hear nasty "rumors" you might)

Pretty much one of the un-disputed robust PDF generation tools is made by
Digital Applications www.digapp.com.  FDF Merge, PDF Merge.  I beleive it
runs on other than WIN OS as well as Win Platforms too.

Steve


- Original Message -
From: "Simon Horwith" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, February 15, 2001 9:52 AM
Subject: RE: PDF generation


> activepdf works well.
>
> ~Simon
>
> > Simon Horwith
> > Allaire Certified Instructor
> > Certified ColdFusion Developer
> > Fig Leaf Software
> > 1400 16th St NW, # 220
> > Washington DC 20036
> > 202.797.6570 (direct line)
> > www.figleaf.com
> >
>
>
> -Original Message-
> From: Billy Cravens [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, February 15, 2001 12:32 PM
> To: CF-Talk
> Subject: OT: PDF generation
>
>
> I have the task of finding a solution for generating volumes of PDF's.
> Pretty typical: pull info from db, build a pdf, and save it to disk.
> However, we're talking about 10,000 pdf's at once.  Anyone have any
> ideas on what would be the most robust solution?
>
> --
> Billy Cravens
> HR Web Development, Sabre
> [EMAIL PROTECTED]
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: PDF generation

2001-02-15 Thread Stephen M Aylor

Search on the site results in NIL under Adobe / PDF / CFSOUTH ... tho I did
find a pr on the CfSouth Presentation

Steve

- Original Message -
From: "Caulfield, Michael" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, February 15, 2001 9:50 AM
Subject: RE: PDF generation


> If you go to www.ininet.com there should be some presentation materials
(and
> sample code) on this topic from a presentation Neil Giarratana gave at
> CFSOUTH.
>
> I haven't tried it, so I can't comment on the robustness of it, but
glancing
> through the powerpoints it looked pretty slick.
>
> Michael Caulfield
> Cognitive Arts
>
> -Original Message-
> From: Billy Cravens [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, February 15, 2001 11:32 AM
> To: CF-Talk
> Subject: OT: PDF generation
>
>
> I have the task of finding a solution for generating volumes of PDF's.
> Pretty typical: pull info from db, build a pdf, and save it to disk.
> However, we're talking about 10,000 pdf's at once.  Anyone have any
> ideas on what would be the most robust solution?
>
> --
> Billy Cravens
> HR Web Development, Sabre
> [EMAIL PROTECTED]
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: PDF generation

2001-02-15 Thread Stephen M Aylor

Anyone hear put ActivePDF under that kind of stress? (10,000 pages / files
at a a whack?)

If your on a WIN platform give activepdf a whirl. If other OS or you run
into prob's with ActivePDF ( i hear nasty "rumors" you might)

Pretty much one of the un-disputed robust PDF generation tools is made by
Digital Applications www.digapp.com.  FDF Merge, PDF Merge.  I beleive it
runs on other than WIN OS as well as Win Platforms too.

Steve


- Original Message -
From: "Simon Horwith" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, February 15, 2001 9:52 AM
Subject: RE: PDF generation


> activepdf works well.
>
> ~Simon
>
> > Simon Horwith
> > Allaire Certified Instructor
> > Certified ColdFusion Developer
> > Fig Leaf Software
> > 1400 16th St NW, # 220
> > Washington DC 20036
> > 202.797.6570 (direct line)
> > www.figleaf.com
> >
>
>
> -Original Message-
> From: Billy Cravens [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, February 15, 2001 12:32 PM
> To: CF-Talk
> Subject: OT: PDF generation
>
>
> I have the task of finding a solution for generating volumes of PDF's.
> Pretty typical: pull info from db, build a pdf, and save it to disk.
> However, we're talking about 10,000 pdf's at once.  Anyone have any
> ideas on what would be the most robust solution?
>
> --
> Billy Cravens
> HR Web Development, Sabre
> [EMAIL PROTECTED]
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: PDF generation

2001-02-15 Thread Arden Weiss

Take a look at www.amyuni.com/pdfpd.htm -- I just used it to generate 2,500 PDF files 
at about 1/second.
There is a developer's version of the product that give you unlimited use.

 ^
/ \__
   (@\___
  /  O
 /(_/
/_/
Whoof...
410-757-3487

-Original Message-
From:   Billy Cravens [SMTP:[EMAIL PROTECTED]]
Sent:   Thursday, February 15, 2001 12:32 PM
To: CF-Talk
Subject:OT: PDF generation

I have the task of finding a solution for generating volumes of PDF's. 
Pretty typical: pull info from db, build a pdf, and save it to disk. 
However, we're talking about 10,000 pdf's at once.  Anyone have any
ideas on what would be the most robust solution?

-- 
Billy Cravens
HR Web Development, Sabre
[EMAIL PROTECTED]
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: PDF generation

2001-02-15 Thread Caulfield, Michael

If you go to www.ininet.com there should be some presentation materials (and
sample code) on this topic from a presentation Neil Giarratana gave at
CFSOUTH.

I haven't tried it, so I can't comment on the robustness of it, but glancing
through the powerpoints it looked pretty slick.

Michael Caulfield
Cognitive Arts

-Original Message-
From: Billy Cravens [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 15, 2001 11:32 AM
To: CF-Talk
Subject: OT: PDF generation


I have the task of finding a solution for generating volumes of PDF's. 
Pretty typical: pull info from db, build a pdf, and save it to disk. 
However, we're talking about 10,000 pdf's at once.  Anyone have any
ideas on what would be the most robust solution?

-- 
Billy Cravens
HR Web Development, Sabre
[EMAIL PROTECTED]
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: PDF generation

2001-02-15 Thread Simon Horwith

activepdf works well.

~Simon

> Simon Horwith
> Allaire Certified Instructor
> Certified ColdFusion Developer
> Fig Leaf Software
> 1400 16th St NW, # 220
> Washington DC 20036
> 202.797.6570 (direct line)
> www.figleaf.com
> 


-Original Message-
From: Billy Cravens [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 15, 2001 12:32 PM
To: CF-Talk
Subject: OT: PDF generation


I have the task of finding a solution for generating volumes of PDF's. 
Pretty typical: pull info from db, build a pdf, and save it to disk. 
However, we're talking about 10,000 pdf's at once.  Anyone have any
ideas on what would be the most robust solution?

-- 
Billy Cravens
HR Web Development, Sabre
[EMAIL PROTECTED]
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists