wlst « weblogic « Java Enterprise Q&A





1. WLST Best Practices: Shell vs MBeans?    stackoverflow.com

Are there any admins out there who use WLST? On our project we are in the process of automating many of our day-to-day tasks such as deployments and domain settings. We're also ...

2. Using WLST to bounce a managed server?    stackoverflow.com

Is there a way to bounce/restart a managed server using WLST? The ServerRuntime MBean seems to have the correct functions to do this but as far as I can tell, you ...

3. ALSB automation    stackoverflow.com

One of the elegant things about WebLogic is WLST (Weblogic Scripting). Is it possible to script actions done in ALSB (Aqualogic Service Bus)? For example: Exporting resources from the bus. ...

4. Is there a comprehensive guide for Weblogic Scripting Tool (WLST)    stackoverflow.com

I'm unsuccessfully using WLST to modify a jmsmodule.xml file online. I have to achieve this programatically rather than using the Weblogic Console. However, I've "recorded" the commands while in the console. ...

5. weblogic scripting    stackoverflow.com

How can I write a script to change the minimum password length to 4 characters using WLST Home >Credential Mappings >Users and Groups >weblogic >Users and Groups >Summary of Security Realms >myrealm ...

6. How to check if application was deployed on a specific managed server?    stackoverflow.com

I use following wlst command in order to check if application was already deployed before:

oldApplication = find(name=d['name'], type='AppDeployment')
But it does not show that application was deployed on a specific server.
How can ...

7. Weblogic starts old version of an application after redeployment    stackoverflow.com

We deploy our enterprise application(exploded) on Weblogic using WLST:

oldApplication = find(name=d['name'], type='AppDeployment')

if oldApplication:
    print "Undeploying application " + d['name'] + " on server " + target
 ...

8. Embedded WLST minimal file set    stackoverflow.com

I'm using Eclipse to write a small Java application that uses WLST to manage a few development servers. I want to be able to give this application to our developers ...

9. I can't kill one server using WLST and Node Manager    stackoverflow.com

I manage seven Weblogic servers for development and test. I use WLST scripts to start and stop them. This works perfectly for six of the servers, but one of ...





10. How to clone weblogic server in WLST (offline-mode)?    stackoverflow.com

We have a custom weblogic template which has admin server (obviously) and a cluster with 2 managed servers deployed to the same machine. We use that template for our development environments. ...

11. How to override edit locks    stackoverflow.com

I'm writing a WLST script to deploy some WAR's and an EAR. However, intermittently, the script will time out because it can't seem to get an edit lock (this script is ...

12. How to find a Mail-Session-Object using WLST    stackoverflow.com

I have two WLST-Scripts: the first creates a new Mail-Session doing something like this:

fooMailSession = cmo.createMailSession('FooMailSession')
fooMailSession.setJNDIName('mail/FooMailSession')
(...)
In the other script I want to remove/delete the earlier created Mail Session - but how ...

13. how to use variable in config.xml of weblogic domain template    stackoverflow.com

I'm trying to use a weblogic domain template to create a server/domain with a variable AdminServer name. What I'd like to do is to use a system variable (e.g.$USER) from within the ...

14. WebLogic wlst list pending tasks    stackoverflow.com

I am using WebLogic 10.3 and would like to know the wlst equivalent of the following sequence which can be performed from the admin console (Login to Admin Console) -> Home -> ...

15. Setting Domain Credential during WebLogic WLST offline domain creation?    stackoverflow.com

I have successfully created WLS 10.3.5 domains using offline WLST, along the lines of readTemplate(template); set("name","DomainName"); ... One detail remains: I need to set the "Credential" of each domain to a common ...

16. How to programatically discover unregistered web services deployed in Weblogic?    stackoverflow.com

There are a number of teams who have deployed applications to a shared Weblogic application server. There has been some effort to maintain a registry but it hasn't been kept ...