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 GenericJMSDestination
Example output:
Attribute Type name String jndiName String externalJNDIName String
Using Jacl:
set name [list name JMSD1] set jndi [list jndiName jms/JMSDestination1] set extJndi [list externalJNDIName jms/extJMSD1] set jmsdAttrs [list $name $jndi $extJndi]
Example output:
{name JMSD1} {jndiName jms/JMSDestination1} {externalJNDIName jms/extJMSD1}
Using Jacl:
$AdminConfig create GenericJMSDestination $newjmsp $jmsdAttrs
Example output:
JMSD1(cells/mycell/nodes/mynode:resources.xml#GenericJMSDestination_1)
Using Jacl:
$AdminConfig save