Description Syntax Example startEdit

WLST Command and Variable Reference 3-51

3.7.15.3 Example

The following example sets the CreateStartMenu option to false: wls:offline setOptionCreateStartMenu, false

3.7.16 showChanges

Command Category: Editing Commands Use with WLST: Online

3.7.16.1 Description

Shows the changes made to the configuration by the current user during the current edit session. In the event of an error, the command returns a WLSTException.

3.7.16.2 Syntax

showChanges[onlyInMemory]

3.7.16.3 Example

The following example shows all of the changes made by the current user to the configuration since the start of the current edit session. wls:mydomainedit showChanges Changes that are in memory and saved to disc but not yet activated are: MBean Changed : com.bea:Name=basicWLSDomain,Type=Domain Operation Invoked : add Attribute Modified : Machines Attributes Old Value : null Attributes New Value : Mach1 Server Restart Required : false MBean Changed : com.bea:Name=basicWLSDomain,Type=Domain Operation Invoked : add Attribute Modified : Servers Attributes Old Value : null Attributes New Value : myserver Server Restart Required : false

3.7.17 startEdit

Command Category: Editing Commands Use with WLST: Online

3.7.17.1 Description

Starts a configuration edit session on behalf of the currently connected user. You must navigate to the edit configuration MBean hierarchy using the edit command before issuing this command. For more information, see Section 3.11.5, edit . Argument Definition onlyInMemory Optional. Boolean value specifying whether to display only the changes that have not yet been saved. This argument defaults to false, indicating that all changes that have been made from the start of the session are displayed. 3-52 Oracle Fusion Middleware WebLogic Scripting Tool Command Reference This command must be called prior to invoking any command to modify the WebLogic domain configuration. In the event of an error, the command returns a WLSTException.

3.7.17.2 Syntax

startEdit[waitTimeInMillis], [timeoutInMillis], [exclusive]

3.7.17.3 Example

The following example saves the edits that have not yet been saved to disk. wls:mydomainedit startEdit60000, 120000 Starting an edit session ... Started edit session, please be sure to save and activate your changes once you are done. wls:mydomainedit

3.7.18 stopEdit