Hello Guys,
I'm having an issue here which i think might well be ISP related, but I thought I would atleast run my code past you guys before I talk to them about it.
I have ColdFusion MX7 hosting, and i wasnt to use CFDOCUMENT to create PDF files, so i've followed the quick demo from the macromedia site as at the moment all I need to print is the results of an HTTP call.
So here is my code.
See anything abnormal about it?
Thanks,
Rob
I'm having an issue here which i think might well be ISP related, but I thought I would atleast run my code past you guys before I talk to them about it.
I have ColdFusion MX7 hosting, and i wasnt to use CFDOCUMENT to create PDF files, so i've followed the quick demo from the macromedia site as at the moment all I need to print is the results of an HTTP call.
So here is my code.
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "[URL unfurl="true"]http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">[/URL]
<html xmlns="[URL unfurl="true"]http://www.w3.org/1999/xhtml">[/URL]
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>PDF Generation Test</title>
</head>
<body>
<cfhttp url="[URL unfurl="true"]http://www.tamedtechnology.net/mt/index.cfm"[/URL] resolveurl="yes"></cfhttp>
<cfdocument format="pdf">
<cfoutput>#cfhttp.FileContent#</cfoutput>
</cfdocument>
</body>
</html>
See anything abnormal about it?
Thanks,
Rob