Actions REST Endpoints

Change Manager/Actions
Change Manager Actions

The change manager resources are used manage WebLogic configuration edit sessions.

To explicitly manage an edit session:

  • Use changeManager/startEdit to start an edit session.
  • Use other resources to make any number of configuration changes, such as configuring data sources and deploying applications.
  • Use changeManager/activate to activate the changes or changeManager/cancel to discard them.

This strategy batches all the changes together which is typically most useful in a production environment when a number of configuration changes need to be made together before they are ready to be exposed to clients.

With implicit edit sessions, instead of using the changeManager, just use other resources to change the configuration (for example, create a data source). Each REST call to change the configuration will start its own edit session, make the change, and then activate the change. This is useful for small tweaks to the configuration as typically performed in development environments.

Activate An Edit Session
Method: post
Path: /management/weblogic/{version}/edit/changeManager/activate
Cancel An Edit Session
Method: post
Path: /management/weblogic/{version}/edit/changeManager/cancelEdit
Force Resolve An Edit Session
Method: post
Path: /management/weblogic/{version}/edit/changeManager/forceResolve
Safe Resolve An Edit Session
Method: post
Path: /management/weblogic/{version}/edit/changeManager/safeResolve
Start An Edit Session
Method: post
Path: /management/weblogic/{version}/edit/changeManager/startEdit