Is there a comprehensive guide to the Weblogic Scripting Tool (WLST)

I unsuccessfully use WLST to modify the jmsmodule.xml file on the Internet. I have to achieve this programmatically, and not use the Weblogic Console. However, I “wrote down” the commands in the console. However, the recorded commands do not work when typed into the WLST script online python. These are the commands that are not executed:

cmo.setPriority(-1)
cmo.setDeliveryMode('Persistent')
cmo.setTimeToDeliver('-1')
cmo.setTimeToLive(-1)

Error that spits out: AttributeError: setPriority

Any ideas? Thanks in advance.

+5
source share
2 answers

cmo refers to the object you are currently in. Make sure you navigate to the correct MBean using the cd () commands

+5
source

, MBean, ls() . youtube , script , ...

http://www.youtube.com/watch?v=luhBaviP2uM

+2

All Articles