Summary
Where are output files created during bursting?
Content
We have a report being bursted and all the pdf files that were generated and then bursted were being stored in a specific directory /var/tmp and accumulating there. In the Bursting Control File, found that this is because the directory was hard-coded in the xapi:document tag as follows:
<xapi:document output="/var/tmp/${SALES_ORDER_NUMBER}" output-type="pdf" delivery="123">
Now when we remove the /var/tmp:
<xapi:document output="${SALES_ORDER_NUMBER}" output-type="pdf" delivery="123">
the bursting still works as desired - but we are not sure where the output files are being created? Under XML Publisher Administrator > Administration tab > Properties > General > the "Temporary directory" setting is "/usr/tmp" - but there is nothing being created in that directory.
We are just trying to change the setting so that the files are not being written to a hard-coded location so that we can monitor the space in whatever directory is getting these files and ensure it is being cleaned up.
Can anyone tell me where these files are being created when not defined in the xapi:document output tag?