WebLogic Scripting Tool

     Previous  Next    Open TOC in new window    View as PDF - New Window  Get Adobe Reader - New Window
Content starts here

Updating the Deployment Plan

You can use WLST to retrieve and update an application’s deployment plan. When using WLST to update an application’s deployment plan, you define variable definitions and variable assignments. A variable definition identifies what descriptor entity is to be changed; a variable assignment associates a new value with the variable.

The following procedure describes how to use WLST in interactive mode. For information about using WLST in script or embedded mode, see Using the WebLogic Scripting Tool.

To update a deployment plan using WLST in interactive mode, perform the following steps:

Note: The example code provided in the following procedure demonstrates how to update a configure Web Services Reliable Messaging. For more information, see “Using Web Services Reliable Messaging” in Programming Advanced Features of WebLogic Web Services Using JAX-RPC.
  1. Create a deployment plan for the application.
  2. For more information, see “Create a deployment plan” in the Administration Console Online Help.

  3. Start WLST in interactive mode. For example:
  4. prompt> java weblogic.WLST

    For more information, see Using the WebLogic Scripting Tool.

  5. Start the WebLogic Server instance to which the application is deployed. For more information, see “Starting and Stopping Servers” in Managing Server Startup and Shutdown.
  6. Connect to the WebLogic Server instance. For example:
  7. connect("weblogic", "weblogic", "localhost:7001")
  8. Load the application and deployment plan. For example:
  9. plan=loadApplication("c:/myApps/ReliableServiceEar/examples/webservices/reliable/ReliableHelloWorldImpl.war", "c:/myApps/ReliableServiceEar/Plan.xml")

    The loadApplication command returns a WLSTPlan object that you can access to make changes to the deployment plan. For more information about the WLSTPlan object, see WLSTPlan Object.

  10. Identify the configuration options that you want to update and their corresponding XPath values.
  11. Determine if variable definitions and variable assignments are currently defined in your deployment plan for the configuration options identified in the previous step. To do so, enter one of the following commands:
    1. To display variables:
    2. plan.showVariables()
      Name Value
      ----- -----
      ReliabilityConfig_AcknowledgementInterval P0DT0.5S
      Wsdl_Exposed true
    3. To display variable assignments:
    4. plan.showVariableAssignments()
      examples/webservices/reliable/ReliableHelloWorldImpl.war
      |
      WEB-INF/weblogic-webservices.xml
      |
      Wsdl_Exposed
      examples/webservices/reliable/ReliableHelloWorldImpl.war
      |
      WEB-INF/weblogic-webservices.xml
      |
      ReliabilityConfig_AcknowledgementInterval |
  12. If the variable definition and assignment are not defined, create them and set the XPath value for the variable assignment, as follows:
    1. Create the variable definition. Use the createVariable() method to specify the variable name and value. For example:
    2. v=plan.createVariable("ReliabilityConfig_BufferRetryCount", "3")
    3. Create the variable assignment. Use the createVariableAssignment() method to specify the name of the variable, the application to which is applies, and the corresponding deployment descriptor. For example:
    4. va=plan.createVariableAssignment("ReliabilityConfig_BufferRetryCount", "ReliableServiceEar", "META-INF/weblogic-application.xml")
    5. Set the XPath value for the variable assignment. For example:
    6. va.setXpath("/weblogic-webservices/webservice-description/[webservice-description-name="examples.webservices.reliable.ReliableHelloWorldImpl"]/port-component/[port-component-name="ReliableHelloWorldServicePort"]/reliability-config/buffer-retry-count")
  13. Save the deployment plan. For example:
  14. plan.save()

  Back to Top       Previous  Next