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 custom properties for URL providers:
Steps for this task
Using Jacl:
set newurlp [$AdminConfig getid /Cell:mycell/Node:mynode/URLProvider:URLP1/]
newurlp = AdminConfig.getid('/Cell:mycell/Node:mynode/URLProvider:URLP1/') print newurlp
URLP1(cells/mycell/nodes/mynode|resources.xml#URLProvider_1)
Using Jacl:
set propSet [$AdminConfig showAttribute $newurlp propertySet]
propSet = AdminConfig.showAttribute(newurlp, 'propertySet') print propSet
(cells/mycell/nodes/mynode|resources.xml#PropertySet_7)
Using Jacl:
$AdminConfig required J2EEResourceProperty
print AdminConfig.required('J2EEResourceProperty')
Attribute Type name String
Using Jacl:
set name [list name RP2] set rpAttrs [list $name]
name = ['name', 'RP2'] rpAttrs = [name]
Using Jacl:
$AdminConfig create J2EEResourceProperty $propSet $rpAttrs
print AdminConfig.create('J2EEResourceProperty', propSet, rpAttrs)
RP2(cells/mycell/nodes/mynode|resources.xml#J2EEResourceProperty_1)