-
1. Re: Why am I getting OUT1_{long_number}.tmp files in my cfusion\logs folder in CF11?
esontag Aug 21, 2014 8:00 AM (in response to esontag)BTW, just renamed the tmp file to pdf and it apparently is a pdf file. I'm curious as to why it would be creating an additional file in here. Also, the version is CF11 Developer.
-
2. Re: Why am I getting OUT1_{long_number}.tmp files in my cfusion\logs folder in CF11?
esontag Aug 21, 2014 9:29 AM (in response to esontag)Turns out the command that's creating the file in the temp folder is
<cfpdf action="processddx" ddxfile="#myddx#" inputfiles="#rptparams.input#" outputfiles="#rptparams.output#" name="ddxOutput">
where myddx is a string that returns true for isDDX(myddx).
<?xml version="1.0" encoding="UTF-8"?> <DDX xmlns="http://ns.adobe.com/DDX/1.0/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://ns.adobe.com/DDX/1.0/ coldfusion_ddx.xsd"> <PDF result="Out1" initialView="firstView"> <Title value="Gift Trust - Silver"/> <PDF source="Cover" bookmarkTitle="Title Page"/> <PDF source="doc1" bookmarkTitle="YTD Performance Summary (@_vista) 2014-01-01 - 2014-08-20" /> <PDF source="doc2" bookmarkTitle="Appraisal (@_vista) 2014-08-20" /> <PDF source="doc3" bookmarkTitle="Cash Ledger (@_vista) 2014-08-20 - 2014-08-20" /> </PDF> <InitialViewProfile name="firstView" show="BookmarksPanel" magnification="100%"/> <StyleProfile name="TOCheaderStyle"> <Header> <Left> <StyledText> <p font="600 18pt Arial"> Gift Trust - Silver</p> <p font="Arial,12pt"> </p> </StyledText> </Left> </Header> </StyleProfile> </DDX>
The inputfiles and outputfiles are both structs and the file referenced in {outputfiles file} appears to get created.
Interestingly enough, a file named OUT1 happens to coincide with the <PDF result="Out1" but that about the only clue I can muster up.
Could it be related to the name='ddxOutput' parameter? Can that be omitted?
Also, this code has been working fine in CF8 / x86 for years.