Using Jacl:
set newjmsp [$AdminConfig getid /Cell:mycell/Node:mynode/JMSProvider:JMSP1/]
Example output:
JMSP1(cells/mycell/nodes/mynode:resources.xml#JMSProvider_1)
Using Jacl:
$AdminConfig required WASTopic
Example output:
Attribute Type name String jndiName String topic String
Using Jacl:
set name [list name WAST1] set jndi [list jndiName jms/WAST1] set topic [list topic "Put your topic here"] set wtAttrs [list $name $jndi $topic]
Example output:
{name WAST1} {jndiName jms/WAST1} {topic {Put your topic here}}
Using Jacl:
$AdminConfig create WASTopic $newjmsp $wtAttrs
Example output:
WAST1(cells/mycell/nodes/mynode:resources.xml#WASTopic_1)
Using Jacl:
$AdminConfig save