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 MQTopic
Example output:
Attribute Type name String jndiName String baseTopicName String
Using Jacl:
set name [list name MQT] set jndi [list jndiName jms/MQT] set baseTN [list baseTopicName "Put the base topic name here"] set mqtAttrs [list $name $jndi $baseTN]
Example output:
{name MQT} {jndiName jms/MQT} {baseTopicName {Put the base topic name here}}
Using Jacl:
$AdminConfig create MQTopic $newjmsp $mqtAttrs
Example output:
MQT(cells/mycell/nodes/mynode:resources.xml#MQTopic_1)
Using Jacl:
$AdminConfig save