cancel
Showing results for 
Search instead for 
Did you mean: 

Configure java.policy for ACF Upload Download

Former Member
0 Kudos

Hi

To run a web dynprto app that uses ACF UPLOADDOWNLOD UI

I have to configure java.policy.

I have added the required lines to upload a file from my

directory folder and it works fine.

When I add the required line for the download folder

grant

{

        permission java.lang.FilePermission "C:\\myDownloadFolder\\-" , "read, write";

}

I still get FilePermission exception ("Access Denied").

Any suggestion?

regards

Yuval

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi

After long investigation I found that the syntax has to be

grant

{

        permission java.lang.FilePermission "C:\\myDownloadFolder\\-" , "read, write";

        permission java.lang.FilePermission "C:/myDownloadFolder/" , "read, write";

}

regards

yuval

Answers (1)

Answers (1)

Former Member