ALSB Automation

One of the elegant things about WebLogic is WLST (Weblogic Scripting). Is it possible to execute script actions in ALSB (Aqualogic service bus)?

For example: Exporting resources from a bus.

+3
source share
2 answers

I learned how to export. You need to grab an instance of ALSBConfigurationMBean as follows.

 if currentTree() != domainRuntime:
    domainRuntime()

alsbConfigBean = findService(ALSBConfigurationMBean.NAME, ALSBConfigurationMBean.TYPE)

From there, you simply query for the correct links. The documentation for ALSBConfigurationMBean is here

Found some Jython code examples here

+5
source

The short answer is yes. Check Using Deployment APIs .

+3

Source: https://habr.com/ru/post/1718547/


All Articles