Before starting this task, the wsadmin tool must be running. See the Starting the wsadmin scripting client article for more information.
Perform the following steps to configure a new WAS40 custom properties:
set new40ds [$AdminConfig getid /Cell:mycell/Node:mynode/JDBCProvider:JDBC1/WAS40DataSource:was4DS1/]
new40ds = AdminConfig.getid('/Cell:mycell/Node:mynode/JDBCProvider:JDBC1/WAS40DataSource:was4DS1/') print new40ds
Example output:
was4DS1(cells/mycell/nodes/mynodes|resources.xml$WAS40DataSource_1)
set propSet [$AdminConfig showAttribute $newds propertySet]
propSet = AdminConfig.showAttribute(newds, 'propertySet') print propSet
Example output:
(cells/mycell/nodes/mynode|resources.xml#J2EEResourcePropertySet_9)
$AdminConfig required J2EEResourceProperty
print AdminConfig.required('J2EEResourceProperty')
Example output:
Attribute Type name String
set name [list name RP5] set rpAttrs [list $name]
name = ['name', 'RP5'] rpAttrs = [name]
$AdminConfig create J2EEResourceProperty $propSet $rpAttrs
print AdminConfig.create('J2EEResourceProperty', propSet, rpAttrs)
Example output:
RP5(cells/mycell/nodes/mynode|resources.xml#J2EEResourceProperty_9)
Related concepts
AdminConfig object for scripted administration
Related reference
Commands for the AdminConfig object