Before you begin
Before starting this task, the wsadmin tool must be running. See the Starting the wsadmin scripting client article for more information.Why and when to perform this task
Perform the following steps to configure a new custom property for a J2C resource adapters:
Steps for this task
Using Jacl:
set newra [$AdminConfig getid /Cell:mycell/Node:mynode/J2CResourceAdapter:RAR1/]
newra = AdminConfig.getid('/Cell:mycell/Node:mynode/J2CResourceAdapter:RAR1/') print newra
RAR1(cells/mycell/nodes/mynode|resources.xml#J2CResourceAdapter_1)
Using Jacl:
set propSet [$AdminConfig showAttribute $newra propertySet]
propSet = AdminConfig.showAttribute(newra, 'propertySet') print propSet
(cells/mycell/nodes/mynode|resources.xml#PropertySet_8)
Using Jacl:
$AdminConfig required J2EEResourceProperty
print AdminConfig.required('J2EEResourceProperty')
Attribute Type name String
Using Jacl:
set name [list name RP4] set rpAttrs [list $name]
name = ['name', 'RP4'] rpAttrs = [name]
Using Jacl:
$AdminConfig create J2EEResourceProperty $propSet $rpAttrs
print AdminConfig.create('J2EEResourceProperty', propSet, rpAttrs)
RP4(cells/mycell/nodes/mynode|resources.xml#J2EEResourceProperty_8)
Related concepts
AdminConfig object for scripted administration
Related reference
Commands for the AdminConfig object