Example: Identifying supported tasks and options for an Enterprise Archive file
The AdminApp object install command supports a set of options and tasks. The following examples use the AdminApp object to obtain a list of supported tasks and options for an EAR file...
- To identify supported options and tasks, use the AdminApp object options command...
Using Jacl
$AdminApp options c:/MyStuff/myapp1.earUsing Jython
This command displays a list of tasks and options.AdminApp.options('c:/MyStuff/myapp1.ear')- To identify supported options only, use the following command...
Using Jacl
$AdminApp optionsUsing Jython
AdminApp.options()- To learn more about any of the tasks or options, use the AdminApp object help command. For example...
Using Jacl
$AdminApp help deployejbUsing Jython
AdminApp.help('deployejb')