When trying to migrate your PPM Jaspersoft data from one server to another, you must use the "admin jaspersoft export" command.
However, when attempting to use the following command:
# ./admin jaspersoft export -orgName PPM -fromUserName superuser -fromPassword XXXXX -fileName ppm.zip -fromURL http://<jaspersoftsever>:8080/reportservice
it fails with the following error:
Error occurred in the preprocessing of the command. null
The root cause of the problem is when exporting out the organization the -fileName parameter needs a full path to function correctly. Example:
-fileName /opt/ppm.zip
Please update your command to include the full path to the filename that you want created. Example:
# ./admin jaspersoft export -orgName PPM -fromUserName superuser -fromPassword XXXXX -fileName /opt/ppm.zip -fromURL http://<jaspersoftsever>:8080/reportservice