How to Use ant to Export Postdeployment Changes of a Composite into a JAR File
The following provides an example of exporting postdeployment changes of a composite into a JAR file.
ant -f ant-sca-deploy.xml exportUpdates -DserverURL=server.url -DupdateType=update.type -DjarFile=jar.file -DcompositeName=composite.name -Drevision=revision -Duser=user
Note:
After specifying the user name, enter the password when prompted.
Table 48-17 describes the syntax.
Table 48-17 ant Postdeployment Export Commands
Argument | Definition |
---|---|
|
The URL of the server that hosts the SOA Infrastructure application (for example, |
|
The type of postdeployment changes to be exported.
|
|
The absolute path of the JAR file to be generated. |
|
The name of the composite to be exported. |
|
The revision of the composite to be exported. |
|
Optional. The user name for accessing the server when basic configuration is configured. |
|
Optional. The password for accessing the server when basic configuration is configured. |
The following example shows how to export all postdeployment updates:
ant -f ant-sca-deploy.xml exportUpdates -DserverURL=http://myhost:8001
-DupdateType=all
-DjarFile=/tmp/all-HelloWorld_rev1.0.jar -DcompositeName=HelloWorld
-Drevision=1.0
The following example shows how to export property postdeployment updates:
ant -f ant-sca-deploy.xml exportUpdates -DserverURL=http://myhost:8001
-DupdateType=property
-DjarFile=/tmp/prop-HelloWorld_rev1.0.jar -DcompositeName=HelloWorld
-Drevision=1.0
The following example shows how to export runtime/metadata postdeployment updates.
ant -f ant-sca-deploy.xml exportUpdates -DserverURL=http://myhost:8001
-DupdateType=runtime
-DjarFile=/tmp/runtime-HelloWorld_rev1.0.jar -DcompositeName=HelloWorld
-Drevision=1.0