Acceptance cloud file (.ppt) problem (Java.io FileNotFound)

0
        I have a Java Action that fills with some data a powerpoint template  which I put in tmp subdirectory of deployment directory (Initially I put it in the deployment directory with same following behaviour). The end result is A3 Template1, the powerpoint file which is generated based on given A3 Template file.    The problem I have is that in local environment the java action works fine, and it finds the initial template and generates a new one then it downloads it, but when I move it into the acceptance environment it no longer works with the following indication after cloud debugger usage:
asked
2 answers
1

In Mendix cloud (I guess also for private cloud), the tmp directory will be cleared for every deployment.

So, lets say you put the template in your .tmp directory and deploy the template is gone.

You could probably save it in database and retrieve the template.

In your local machine, the .tmp directory is not deleted for every deployment. So that is the reason it works in local.

answered