Using Jacl:
set node [$AdminConfig getid /Cell:mycell/Node:mynode/]
Example output:
mynode(cells/mycell/nodes/mynode:node.xml#Node_1)
Using Jacl:
$AdminConfig required JMSProvider
Example output:
Attribute Type name String externalInitialContextFactory String externalProviderURL String
Using Jacl:
set name [list name JMSP1] set extICF [list externalInitialContextFactory "Put the external initial context factory here"] set extPURL [list externalProviderURL "Put the external provider URL here"] set jmspAttrs [list $name $extICF $extPURL]
Example output:
{name JMSP1} {externalInitialContextFactory {Put the external initial context factory here }} {externalProviderURL {Put the external provider URL here}}
Using Jacl:
set newjmsp [$AdminConfig create JMSProvider $node $jmspAttrs]
Example output:
JMSP1(cells/mycell/nodes/mynode:resources.xml#JMSProvider_1)
Using Jacl:
$AdminConfig save