You can use scripting and the wsadmin tool to configure development
mode for server objects.
About this task
Perform the following steps to set the development mode for a server
object:
Procedure
- Locate the server object. The following example selects the first
server found:
Using Jacl:
set server [$AdminConfig getid /Server:server1/]
Using Jython:
server = AdminConfig.getid('/Server:server1/')
- Enable development mode:
Using Jacl:
$AdminConfig modify $server "{developmentMode true}"
Using Jython:
AdminConfig.modify(server, [['developmentMode', 'true']])
- Save the configuration changes. See the Saving configuration changes with the wsadmin tool
article for more information.
- In a network deployment environment
only, synchronize the node. See the Synchronizing nodes with the wsadmin tool
article for more information.