Issue in Opening Network drive from Mendix application
0
I am trying to open a network drive location from my mendix application. To do this, I added a button on my application page and called a microflow as its onClick action. The microflow then calls a Java action which opens the network drive by following code: File folder = new File(Parameter); Desktop.getDesktop().open(folder); Here Parameter is the network drive location. This was working in my local but its not working when I deployed it on cloud environment. I added some logs and it shows "Desktop not supported" from my code : if (!Desktop.isDesktopSupported()) { LOG.error("Desktop not supported: "); return false; } Any idea what might be causing this issue in the cloud environment ? OR what else can I try for this usecase.