An example configuring a new custom property for URL providers follows:
Using Jacl:
set newurlp [$AdminConfig getid /Cell:mycell/Node:mynode/URLProvider:URLP1/]
An example of this output follows:
URLP1(cells/mycell/nodes/mynode:resources.xml#URLProvider_1)
Using Jacl:
set propSet [$AdminConfig showAttribute $newurlp propertySet]
An example of this output follows:
(cells/mycell/nodes/mynode:resources.xml#PropertySet_7)
Using Jacl:
$AdminConfig required J2EEResourceProperty
An example of this output follows:
Attribute Type name String
Using Jacl:
set name [list name RP2] set rpAttrs [list $name]
Using Jacl:
$AdminConfig create J2EEResourceProperty $propSet $rpAttrs
An example of this output follows:
RP2(cells/mycell/nodes/mynode:resources.xml#J2EEResourceProperty_1)
Using Jacl:
$AdminConfig save