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 GenericJMSConnectionFactory
Example output:
Attribute Type name String jndiName String externalJNDIName String
Using Jacl:
set name [list name JMSCF1] set jndi [list jndiName jms/JMSConnFact1] set extJndi [list externalJNDIName jms/extJMSCF1] set jmscfAttrs [list $name $jndi $extJndi]
Example output:
{name JMSCF1} {jndiName jms/JMSConnFact1} {externalJNDIName jms/extJMSCF1}
Using Jacl:
$AdminConfig create GenericJMSConnectionFactory $newjmsp $jmscfAttrs
Example output:
JMSCF1(cells/mycell/nodes/mynode:resources.xml#GenericJMSConnectionFactory_1)
Using Jacl:
$AdminConfig save