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 MQTopicConnectionFactory
Example output:
Attribute Type name String jndiName String
Using Jacl:
set name [list name MQTCF] set jndi [list jndiName jms/MQTCF] set mqtcfAttrs [list $name $jndi]
Example output:
{name MQTCF} {jndiName jms/MQTCF}
Using Jacl:
set template [lindex [$AdminConfig listTemplates MQTopicConnectionFactory] 0]
Example output:
Example non-XA WMQ TopicConnectionFactory(templates/system: JMS-resource-provider-templates.xml #MQTopicConnectionFactory_5)
Using Jacl:
$AdminConfig create MQTopicConnectionFactory $newjmsp $mqtcfAttrs $template
Example output:
MQTCF(cells/mycell/nodes/mynode:resources.xml#MQTopicConnectionFactory_1)
Using Jacl:
$AdminConfig save