I created an App Service with Tomcat and a webapp that needs to store files, which should be accessible by another webapp in another App Service. The application only accepts absolute file paths.
If I put my webapps in a VM I could create a share to my azure file storage, but I guess this is not possible for a App Service (I get access denied when executing net use... in the console). I tried: \mystorage.file.core.windows.net\myfiles but it fails to write. Should this work? Is there a way I could a unc path to some azure location where both my App Services have access to? Or should I create vm's to achieve this?