I have a problem calling a server to a server with ColdFusion.
Suppose I have two servers, each of which has a file:
My source code is as follows:
<cfdocument format="pdf" pagewidth="11" pageheight="8.5"> This is a simple PDF that was created to show issues with content generation on the server. This PDF uses an http:
If I remove the CFDOCUMENT tags, the page will render fine and the JPG image will display exactly as it should. However, when I present the page as a PDF, the document does not contain a JPG file, and a large, ugly red X appears, where the image should be reversed.
My web administrator suggested that although the user can authenticate on the icon and on the content, the icon server may not authenticate on the content or vice versa. How can I instruct coldfusion to accept user permissions from the current user and pull out the image?
I studied the use of CFIMAGE and saved the image file in the RAM of the content, and then wrote the image into a variable before PDF rendering. This seems to cause an error.
Thank you in advance for your feedback.
source share