Before you begin
Before starting this task, the wsadmin tool must be running. See the Starting the wsadmin scripting client article for more information.Why and when to perform this task
Perform the following steps to configure a new JMS connection:
Steps for this task
Using Jacl:
set newjmsp [$AdminConfig getid /Cell:mycell/Node:myNode/JMSProvider:JMSP1]
newjmsp = AdminConfig.getid('/Cell:mycell/Node:myNode/JMSProvider:JMSP1') print newjmsp
JMSP1(cells/mycell/nodes/mynode|resources.xml#JMSProvider_1)
Using Jacl:
$AdminConfig required GenericJMSConnectionFactory
print AdminConfig.required('GenericJMSConnectionFactory')
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]
{name JMSCF1} {jndiName jms/JMSConnFact1} {externalJNDIName jms/extJMSCF1}
name = ['name', 'JMSCF1'] jndi = ['jndiName', 'jms/JMSConnFact1'] extJndi = ['externalJNDIName', 'jms/extJMSCF1'] jmscfAttrs = [name, jndi, extJndi] print jmscfAttrs
[[name, JMSCF1], [jndiName, jms/JMSConnFact1], [externalJNDIName, jms/extJMSCF1]]
Using Jacl:
$AdminConfig create GenericJMSConnectionFactory $newjmsp $jmscfAttrs
print AdminConfig.create('GenericJMSConnectionFactory', newjmsp, jmscfAttrs)
JMSCF1(cells/mycell/nodes/mynode|resources.xml#GenericJMSConnectionFactory_1)
Related concepts
AdminConfig object for scripted administration
Related reference
Commands for the AdminConfig object