You are not logged in.
Hi,
I'm trying to create a local filesytem datasink to download reports to a local filesytem where reportserver is running.
I've mentioned the path and folder in the path and when I hit test datasink, i get "IllegalArgumentException: Cannot write into specified directory".
The path and the folder exists on the server and user tomcat has write permissions to the same.
Any idea why am i getting this error? and how to fix this?
Offline
Hi Uddeep,
this exception is thrown here:
if (!Files.isWritable(baseDir))
throw new IllegalArgumentException("Cannot write into specified directory");
so your base dir seems to really not be writeable. You can test this with a groovy script.
Regards,
Eduardo
Offline