Hi there,
I am using clojail in my application to securely evaluate custom code.
I want to allow my application to process some excel files(xlsx). The libraries i use ended up using Java's createTempFile API.
I get following exception.
Caused by: java.lang.SecurityException: Unable to create temporary file
at java.io.File.createTempFile(File.java:2018)
at java.io.File.createTempFile(File.java:2070)
at org.apache.xmlbeans.impl.common.XBeanDebug.log(XBeanDebug.java:97)
at org.apache.xmlbeans.impl.common.XBeanDebug.logException(XBeanDebug.java:116)
at org.apache.xmlbeans.impl.schema.SchemaTypeSystemImpl.<init>(SchemaTypeSystemImpl.java:189)
... 60 more
How can i customize my clojail sandbox to allow creating temp files? This is how i am creating a sandbox now.
Hi there, I am using clojail in my application to securely evaluate custom code. I want to allow my application to process some excel files(xlsx). The libraries i use ended up using Java's createTempFile API. I get following exception.
How can i customize my clojail sandbox to allow creating temp files? This is how i am creating a sandbox now.
Please provide me some help on this.