Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

help from generate pdf from http pdf document

New Here ,
Nov 05, 2008 Nov 05, 2008
hi,

I've somes url like : http://www.server01/mydoc1.pdf, http://www.server01/mydoc2.pdf

from another server (server02),what is the solution to merge a new pdf document on server02 from theses urls from server01?
I try with cfdocument but it doesn't work...

thanx for your help

regards,

Pascal
TOPICS
Advanced techniques
560
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Nov 05, 2008 Nov 05, 2008
What's your CF version?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Nov 06, 2008 Nov 06, 2008
MX 8

I find a solution with
<cfhttp url=" http://www.server01/mydoc1.pdf" method="get" resolveURL="no" file="mydoc1.pdf" path="d:\directory2\"></cfhttp>
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Nov 06, 2008 Nov 06, 2008
I try with cfdocument but it doesn't work...

I don't expect it to. Cfdocument is for converting from CFML and HTML to PDF, not for merging.

Since you're on CF8, you can use the cfpdf tag. The following example downloads two PDF files, then merges them. However, I get the feeling there should be a more efficient way.



Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Nov 06, 2008 Nov 06, 2008
thank you very much...
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Nov 06, 2008 Nov 06, 2008
LATEST
!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources