You can configure new data source custom properties using the wsadmin tool and scripting. Before starting this task, the wsadmin tool must be running. See the Starting the wsadmin scripting client article for more information.
Perform the following steps to configure a new data source custom property:
Using Jacl:
set newds [$AdminConfig getid /Cell:mycell/Node:mynode/JDBCProvider:JDBC1/DataSource:DS1/]
newds = AdminConfig.getid('/Cell:mycell/Node:mynode/JDBCProvider:JDBC1/DataSource:DS1/') print newds
Example output:
DS1(cells/mycell/nodes/mynode|resources.xml$DataSource_1)
Using Jacl:
set propSet [$AdminConfig showAttribute $newds propertySet]
propSet = AdminConfig.showAttribute(newds, 'propertySet') print propSet
Example output:
(cells/mycell/nodes/mynode|resources.xml#J2EEResourcePropertySet_8)
Using Jacl:
$AdminConfig required J2EEResourceProperty
print AdminConfig.required('J2EEResourceProperty')
Example output:
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)
Example output:
RP4(cells/mycell/nodes/mynode|resources.xml#J2EEResourceProperty_8)