Do you want to add your own commands to the already rich set of WLST commands?
In WebLogic 10.0 and higher, you can add your own commands by building your own *.py file and adding them to WL_HOME/common/wlst/lib folder. Any *.py file added to this folder will be automatically compiled and imported by WLST when started on that machine. So the custom commands built as definitions inside these modules can be used by calling them on the respective module names.
If you have a TestLib.py stored under WL_HOME/common/wlst/lib folder:
TestLib.py
----------
def testCmd():
print 'This is a test command'
And if there is a definition called testCmd() defined in it then you can call it as follows:
wls:/offline>TestLib.testCmd()
What you waiting for? Go and add you command to WLST now.
Comments (1)
How about some one who is new to WSLT or some one new to concept of def testCmd(): ?
Hope to see more on how to get start on WSLT ..
Posted by Atul | August 29, 2008 5:10 AM
Posted on August 29, 2008 05:10