Example: Collect arguments for the AdminControl object
This example shows how to use multiple arguments with the AdminControl object.
Verify that the arguments parameter is a single string. Each individual argument in the string can contain spaces. Collect each argument that contains spaces in some way.
- An example of how to obtain an MBean follows:
am = AdminControl.queryNames('type=ApplicationManager,process=server1,*')
- Multiple ways exist to collect arguments that contain spaces. Choose one of the following alternatives:
- AdminControl.invoke(am, 'startApplication', '[JavaMail Sample]')
- AdminControl.invoke(am, 'startApplication', '\"JavaMail Sample\"')
Related tasks
Use the AdminControl object for scripted administration