The scripting library provides multiple script procedures to automate your application configurations. This topic provides usage information for scripts that update applications. You can run each script individually or combine procedures to create custom automation scripts for your environment.
This script uses the update command to add a single file to a deployed application.
Argument | Description |
---|---|
appName | Specifies the name of the application to update. |
fileContent | Specifies the name of the file to use to update the application. |
contentURI | Specifies the URI of the file content. |
Syntax
AdminApplication.addSingleFileToAnAppWithUpdateCommand(appName, fileContent, contentURI)
Example usage
AdminApplication.addSingleFileToAnAppWithUpdateCommand("myApp", "/sample.txt", "META-INFO/sample.txt")
This script uses the update command to add a single module file to a deployed application.
Argument | Description |
---|---|
appName | Specifies the name of the application to update. |
fileContent | Specifies the name of the file to use to update the application. |
contentURI | Specifies the URI of the file content. |
Syntax
AdminApplication.addSingleModuleFileToAnAppWithUpdateCommand(appName, fileContent, contentURI)
Example usage
AdminApplication.addSingleModuleFileToAnAppWithUpdateCommand("myApp", "/Increment.jar", "Increment.jar")
This script uses the update command to add and update a single module file for a deployed application.
Argument | Description |
---|---|
appName | Specifies the name of the application to update. |
fileContent | Specifies the name of the file to use to update the application. |
contentURI | Specifies the URI of the file content. |
contextRoot | Specifies the context root for web modules in the application. |
Syntax
AdminApplication.addUpdateSingleModuleFileToAnAppWithUpdateCommand(appName, fileContent, contentURI, contextRoot)
Example usage
AdminApplication.addUpdateSingleModuleFileToAnAppWithUpdateCommand("myApp", "/DefaultWebApplication.war", "DefaultWebApplication.war", "/webapp/defaultapp")
This script uses the update command to add a partial application to a deployed application.
Argument | Description |
---|---|
appName | Specifies the name of the application to update. |
fileContent | Specifies the name of the file to use to update the application. |
Syntax
AdminApplication.addPartialAppToAnAppWithUpdateCommand(appName, fileContent)
Example usage
AdminApplication.addPartialAppToAnAppWithUpdateCommand("myApp", "/partialadd.zip")
This script uses the update command to delete a single file from a deployed application.
Argument | Description |
---|---|
appName | Specifies the name of the application to update. |
fileContent | Specifies the name of the file to use to update the application. |
contentURI | Specifies the URI of the file content. |
Syntax
AdminApplication.deleteSingleFileToAnAppWithUpdateCommand(appName, fileContent, contentURI)
Example usage
AdminApplication.deleteSingleFileToAnAppWithUpdateCommand("myApp", "/sample. txt", "META-INFO/sample.txt")
This script uses the update command to delete a single module file from a deployed application.
Argument | Description |
---|---|
appName | Specifies the name of the application to update. |
fileContent | Specifies the name of the file to use to update the application. |
contentURI | Specifies the URI of the file content. |
Syntax
AdminApplication.deleteSingleModuleFileToAnAppWithUpdateCommand(appName, fileContent, contentURI)
Example usage
AdminApplication.deleteSingleModuleFileToAnAppWithUpdateCommand("myApp", "/Increment.jar", "Increment.jar")
This script uses the update command to delete a partial application from a deployed application.
Argument | Description |
---|---|
appName | Specifies the name of the application to update. |
fileContent | Specifies the name of the file to use to update the application. |
contentURI | Specifies the URI of the file content. |
Syntax
AdminApplication.deletePartialAppToAnAppWithUpdateCommand(appName, fileContent, contentURI)
Example usage
AdminApplication.deletePartialAppToAnAppWithUpdateCommand("myApp", "/part ialdelete.zip", "partialdelete")
This script updates an application using default merging.
Argument | Description |
---|---|
appName | Specifies the name of the application to update. |
earFile | Specifies the name of the file to use to update the application. |
Syntax
AdminApplication.updateApplicationUsingDefaultMerge(appName, earFile)
Example usage
AdminApplication.updateApplicationUsingDefaultMerge("myApp", "/ears/D
efaultApplication.ear")
This script updates an application using -update.ignore.new option. The system ignores the bindings from the new version of the application.
Argument | Description |
---|---|
appName | Specifies the name of the application to update. |
earFile | Specifies the name of the file to use to update the application. |
Syntax
AdminApplication.updateApplicationWithUpdateIgnoreNewOption(appName, earFile)
Example usage
AdminApplication.updateApplicationWithUpdateIgnoreNewOption("myApp", "c:/ears/DefaultApplication.ear")
This script updates an application using the -update.ignore.old option. The system ignores the bindings from the installed version of the application.
Argument | Description |
---|---|
appName | Specifies the name of the application to update. |
earFile | Specifies the name of the file to use to update the application. |
Syntax
AdminApplication.updateApplicationWithUpdateIgnoreOldOption(appName, earFile)
Example usage
AdminApplication.updateApplicationWithUpdateIgnoreOldOption("myApp", "/ears/DefaultApplication.ear")
This script uses the update command to update an entire deployed application.
Argument | Description |
---|---|
appName | Specifies the name of the application to update. |
earFile | Specifies the name of the file to use to update the application. |
Syntax
AdminApplication.updateEntireAppToAnAppWithUpdateCommand(appName, earFile)
Example usage
AdminApplication.updateEntireAppToAnAppWithUpdateCommand("myApp", "/new.ear")
This script uses the update command to update a partial application for a deployed application.
Argument | Description |
---|---|
appName | Specifies the name of the application to update. |
fileContent | Specifies the name of the file to use to update the application. |
contentURI | Specifies the URI of the file content. |
Syntax
AdminApplication.updatePartialAppToAnAppWithUpdateCommand(appName, fileContent, contentURI)
Example usage
AdminApplication.updatePartialAppToAnAppWithUpdateCommand("myApp", "/part ialadd.zip", "partialadd")
This script uses the update command to update a single file on a deployed application.
Argument | Description |
---|---|
appName | Specifies the name of the application to update. |
fileContent | Specifies the name of the file to use to update the application. |
contentURI | Specifies the URI of the file content. |
Syntax
AdminApplication.updateSingleFileToAnAppWithUpdateCommand(appName, fileContent, contentURI)
Example usage
AdminApplication.updateSingleFileToAnAppWithUpdateCommand("myApp", "/sample. txt", "META-INFO/sample.txt")
This script uses the update command to update a single module file for a deployed application.
Argument | Description |
---|---|
appName | Specifies the name of the application to update. |
fileContent | Specifies the name of the file to use to update the application. |
contentURI | Specifies the URI of the file content. |
Syntax
AdminApplication.updateSingleModuleFileToAnAppWithUpdateCommand(appName, fileContent, contentURI)
Example usage
AdminApplication.updateSingleModuleFileToAnAppWithUpdateCommand("myApp", "/sample.jar", "Increment.jar")