Prepare for evolutionary changes with script compatibility
support.
Supported configurations: This
topic is about configuration migration, such as migrating deployment
managers and federated nodes in a network deployment environment.
The Application Migration Toolkit for WebSphere Application Server
provides support for migrating applications from previous versions
of WebSphere Application Server to the latest product version. For
information about migrating applications, read more about the Application
Migration Toolkit.
sptcfg
The following changes can be made with
with script compatibility
support.
- HTTP transports: the architecture uses the new channel
framework. HTTP definitions are mapped on top of this support. When
compatibility mode is chosen, the old HTTPTransport objects are migrated
and mapped onto the channel architecture. Existing scripts can modify
these objects and will run unchanged.
- Process definition: The name of
this object is changed from processDef to processDefs. You can mitigate
this change by using the compatibility mode mapping provided by the migration tools. The change to scripts
to use the new location is as follows:
- Old example using Jython:
processDef = AdminConfig.list('JavaProcessDef', server1)
print processDef
- New example using Jython. Identify the process definition belonging
to this server and assign it to the processDefs variable:
processDefs = AdminConfig.list('JavaProcessDef', server1)
print processDefs