Section | ||||||||
---|---|---|---|---|---|---|---|---|
|
Prerequisites
- The Application Uploader requires Java version 1.8. Click here to download Java 1.8 if necessary.
- Verify that your JAVA_HOME or JRE_HOME environment variable is pointing to the Java 1.8 installation directory. If not, follow these instructions to modify:
- Type the set command (Windows and Mac) to review the current value of the JAVA_HOME or JRE_HOME environmental value
- Locate the JDK or JRE Installation Directory
- Set the JAVA_HOME or JRE_HOME Environment Variable
- The applications must be uploaded to users that have the role of frevvo,designer.
- You must have an on-premise installation of or a tenant in the frevvo cloud that has access to the API turned on. Contact frevvo to request this, if necessary.
Configuration
- Download the Application Uploader zip file
- Unzip it to a location on your desktop
- Edit the config.properties file
- The URL parameter specifies the location of your installation:
- Cloud customers: change the URL parameter to https://app.frevvo.com:443
- On-premise customers: URL=http://localhost:8082 should work if is running on your local pc. If not, change the localhost:8082 to your server and port.
Edit the path to point to the location of the Testdata_Folder directory. Be sure to keep the double backslashes to separate the directory names. In the example, is running on a local pc and the Testdata_Folder is located on the C drive of that pc in the Users\My Documents\Application Loader\ directory on a Windows system.
Code Block URL=http://localhost:8082 PATH=C:\\Users\\Owner\\My Documents\\Application Loader\\Testdata_Folder\\
- Modify the testdata.csv file:
- Delete all the text in row 1 of the csv file
- Add the users you want to upload applications to in the user@<your tenant> format in Column A.
- Add the passwords for the users listed in Column A to Column B.
- Add the complete application name (with the extension) for the first application you want to upload in Column C. Ex: EOBExercise_app.zip. Additional application names should go in Columns C, D, E etc.
- Save the file with a .csv extension.
With a testdata.csv file configured as shown in the image the MiniTraining_forms, MiniTraining_Rules and MiniTraining_Workflows applications will be uploaded to users max, jack, andrea and meg in the training tenant when the ApplicationUploader.jar file is executed.
- Delete all the text in row 1 of the csv file
- Delete the exisitng EOBExercise application in the Testdata_Folder. Copy the application zip files that you want to upload to this location.
Upload Applications
...
Command
- Open a command prompt
- Navigate to the directory where the ApplicationUploader.jar is located.
- Run the jar file :
java -jar ApplicationUploader.jar
If successful, you should see the results in the command window.
- Navigate to the directory where the ApplicationUploader.jar is located.
- Log into your tenant as each of your specified users to verify that your applications were uploaded.
...