modifySIBJMSTopic command
Use the modifySIBJMSTopic command to change the properties of a JMS topic for the default messaging provider at a specific scope.
如果要執行這個指令,請使用 wsadmin Scripting 用戶端的 AdminTask 物件。
wsadmin Scripting 用戶端是從 Qshell 執行.
如需相關資訊,請參閱利用 wsadmin Script 配置 Qshell 來執行 WebSphere Script.
服務整合匯流排指令有指令行說明:
- 如需 Jython 中可用的服務整合匯流排 JMS 指令清單,以及每個指令的簡要說明,請在 wsadmin 提示下,輸入下列指令:
print AdminTask.help('SIBJMSAdminCommands')
- 如需給定指令的概觀說明,請在 wsadmin 提示下,輸入下列指令:
print AdminTask.help('command_name')
使用指令之後,請利用下列指令,儲存對主要配置所做的變更:
AdminConfig.save()
Purpose
This command changes the properties of a JMS topic for the default messaging provider at a specific scope.
Target object
A JMS topic.
Required parameters
None.
Optional parameters
-name jmstopic_name
-jndiName jndi_name
-description text
-topicName topic_name
-topicSpace topicspace_name
-deliveryMode Application | NonPersistent | Persistent
-timeToLive time
-priority priority
-readAhead AsConnection | AlwaysOn | AlwaysOff
-busName name
Example
- Using Jython:
wsadmin>AdminConfig.getid("/Node:9994GKCNode01") '9994GKCNode01(cells/9994GKCNode01Cell/nodes/9994GKCNode01|node.xml#Node_1)' wsadmin>AdminTask.modifySIBJMSTopic("jmstopic2(cells/9994GKCNode01Cell/nodes/ 9994GKCNode01|resources.xml#J2CAdminObject_1098738992263)", ["-jndiName", "jms/jnmstopic2", "-topicName", "archery", "-readAhead", "AlwaysOn"]) 'jmstopic2(cells/9994GKCNode01Cell/nodes/9994GKCNode01|resources.xml# J2CAdminObject_1098738992263)' wsadmin>AdminTask.showSIBJMSTopic("jmstopic2(cells/9994GKCNode01Cell/nodes/ 9994GKCNode01|resources.xml#J2CAdminObject_1098738992263)") '{topicSpace=sportshall, deliveryMode=Application, jndiName=jms/jnmstopic2, busName=, readAhead=AlwaysOn, name=jmstopic2, timeToLive=, priority=, topicName=archery}'
- Using Jacl:
wsadmin>$AdminConfig getid /Node:9994GKCNode01 9994GKCNode01(cells/9994GKCNode01Cell/nodes/9994GKCNode01|node.xml#Node_1) wsadmin>$AdminTask modifySIBJMSTopic jmstopic2(cells/9994GKCNode01Cell/nodes/9994GKCNode01|resources.xml# J2CAdminObject_1098738992263) {-jndiName jms/jnmstopic2 -topicName archery -readAhead AlwaysOn} jmstopic2(cells/9994GKCNode01Cell/nodes/9994GKCNode01|resources.xml# J2CAdminObject_1098738992263) wsadmin>$AdminTask showSIBJMSTopic jmstopic2(cells/9994GKCNode01Cell/nodes/9994GKCNode01|resources.xml# J2CAdminObject_1098738992263) {topicSpace=sportshall, deliveryMode=Application, jndiName=jms/jnmstopic2, busName=, readAhead=AlwaysOn, name=jmstopic2, timeToLive=, priority=, topicName=archery}