JAR File
- 23 Dec 2022
- 1 Minute to read
- Print
- DarkLight
JAR File
- Updated on 23 Dec 2022
- 1 Minute to read
- Print
- DarkLight
Article summary
Did you find this summary helpful?
Thank you for your feedback
Parameters
Flow file
- (required) - fully qualified path to the Flow file.Run Profile name
- (required) - name of the Run Profile to execute.Parameter Set name
- (optional) - name of the Parameter Set to use during execution.Notifications
- (optional) - toggles email notifications, enabled by default (to disable add the following as the last parameter: "-n=false")
Running a Run Profile as a Job with email notifications
Without a parameter set
Syntax:
java -jar EuclidStudio.jar [flow file] [run profile name]
Example:
java -jar EuclidStudio.jar "c:\temp\sample.flx" "default"
With a parameter set
Syntax:
java -jar EuclidStudio.jar [flow file] [run profile name] [parameter set name]
Example:
java -jar EuclidStudio.jar "c:\temp\sample.flx" "default" "set1"
Running a Run Profile as a Job without email notifications
Without a parameter set
Syntax:
java -jar EuclidStudio.jar [flow file] [run profile name] [no notifications flag]
Example:
java -jar EuclidStudio.jar "c:\temp\sample.flx" "default" "-n=false"
With a parameter set
Syntax:
java -jar EuclidStudio.jar [flow file] [run profile name] [parameter set name] [no notifications flag]
Example:
java -jar EuclidStudio.jar "c:\temp\sample.flx" "default" "set1" "-n=false"
Was this article helpful?