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