An example configuring a new custom property for a J2C resource factories follows:
Using Jacl:
set newcf [$AdminConfig getid /J2CConnectionFactory:J2CCF1/]
An example of this output follows:
J2CCF1(cells/mycell/nodes/mynode:resources.xml#J2CConnectionFactory_1)
Using Jacl:
set propSet [$AdminConfig showAttribute $newcf propertySet]
An example of this output follows:
(cells/mycell/nodes/mynode:resources.xml#PropertySet_8)
Using Jacl:
$AdminConfig required J2EEResourceProperty
An example of this output follows:
Attribute Type name String
Using Jacl:
set name [list name RP4] set rpAttrs [list $name]
Using Jacl:
$AdminConfig create J2EEResourceProperty $propSet $rpAttrs
An example of this output follows:
RP4(cells/mycell/nodes/mynode:resources.xml#J2EEResourceProperty_8)
Using Jacl:
$AdminConfig save